search
Free counters!

calendar
« August 2012 »
Su Mo Tu We Th Fr Sa
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
Recently...
Categories
Links
Archives
Syndicate
Credits
LifeType IE7 XHTML CSS Firefox

Earn Money Easily

2012-08-26 @ 10:06 in News


purchase links

In 21st Century Society, many people are always in a pressure to make two ends meet and many of us fall just short of paying off their monthly bills. Online Surveys, Online Advertising etc. are a great solution to such type of daily routine problem, as you can participate in free paid Surveys inyour free time and earn some extra money for bills or whatever purpose you decide. Don’t feel shy or hesitated many people like you & me are using paid surveys to make a few extra bucks each month.

Earn an income online using the power of the banners broker ad-pub combo. Finally, a business opportunity that requires no referring, selling or traffic generating! Earn revenue from ad inventory WHILE advertising ANY business or website at the SAME time, join in on a LIVE web conference today!

 

 

Related Articles:

Our Brain is Truly Wonderful!

2012-08-25 @ 16:49 in Miscellaneous


purchase links

Squint your eyes enough to see who are in this picture

There was an interesting article on PsychWorld last week. It points out how us humans, as intelligent creatures, have a pretty remarkable ability to recognize faces. But what would happen if the faces we see got obscured in some way? Like upside-down heads with inverted eyes and lips? How about if they were made into pixelized blocks, for instance? Would we still able to make out who might be depicted in those obscured images?These pixelized block portraits were inspired by Leon Harmon and Bela Julesz’s 1973 Lincoln Illusion. If I’m right, there should be no problem for you to recognize who are the famous people in the following images.Try squinting your eyes as much as you can, or look from afar if you need to. The only thing that might prevent you from recognizing the correct celebrity, is if you are not very familiar with American cultureI just can’t believe our brain’s ability to pick up a face from such intensively reduced images! When you think about it for a second, these images are consisted of just a few single-colored squares! Also, be sure to notice, how photos become almost sharp if you squint your eyes enough. Solution can be found at the end of the post.

 

 

 

 

 

 

 

 

 

O'BrianElvis PreseyHillary Clinton, Mona Lisa, Einstine,  Martin Luther King

Effective Classified Advertising

2012-08-25 @ 09:53 in Miscellaneous


purchase links

Classified advertisingClassified advertising is a form of online or offline advertising where similar good and services are grouped by category. Classified advertising provides the ability to reach an audience looking for what you are selling. Most classified advertising aims to get a direct response from a targeted audience although it can maintain a market presence and introduce products and services. Understand how to create effective classified advertising and you can generate more sales and a high return on your advertising investment. It should come as no surprise that I'm a big fan of classified ads. I am able to pull in a large volume of traffic for a wide variety of affiliate offers using low cost classified ads. For the purpose of this article I'm referring to BackPage online classifieds, but most of this information will hold true for other online and print classifieds as well.

Classified Sri Lanka

Effective Ad Types

People get their news from so many sources these days that newspapers aren't as effective as they once were. This doesn't mean your newspaper ad won't be effective, but it does mean you need to plan your print ads more strategically. Some types of ads will be more effective than others. It will depend on your target audience, the type of products you offer and where the ad is seen.

Newspapers generally feature two types of ads. First, there is the classified ad or text ad, and then you have retail advertising or display ads. The display ad may be all text or include images and can be found throughout the publication. All of the following types of newspaper ads refer to display ads.

Business Card Ad - This type of ad basically says who and where you are, and what you sell. It may include your logo. Short and sweet, that's it. This could be a nice small ad that you run year round.

Coupon Ad - These are great for sales promotions to bring new customers to the store. By offering a certain dollar or percent amount off your merchandise, the coupon offer is also one of the easiest ads to track the effectiveness.

Sale Ad - Instead of offering a discount to a particular customer like the Coupon Ad, the Sale Ad invites the public into their store to receive a discount on a product, department or the entire store. Most retailers limit the extent of their newspaper advertising to the ad featuring a clearance or other markdown sale.

Spotlight Ad - This type of newspaper ad focuses the attention to a particular product, product line, staff member or customer of your business. This looks good as a larger display ad run just a few times each year.

Informational Ad - This ad could be written as a Q&A ad offering your professional advice on a topic your store covers. It could also be written in a journalistic style making it read like an article instead of an advertisement.


Step by Step Guide on Postfix Mail Server with Virtual Users and Multiple Domains

2012-08-23 @ 10:57 in Technology


purchase links

Part 1:  Install Postfix with Mysql Support and remove Sendmail 

Installing of Postfix, Postfixadmin, Dovecot and Squirrelmail is not an easy task. There are some customization works you need to be done in order to get it works. I hope the following guide step by step instruction will be handy for you :)

 

 

My mail server system information:

hostname : example.centos.local

IP address: 192.168.139.128

Netmask   : 255.255.255.0

Gateway  : 192.168.139.2

 

There are 2 domains that I will setup for this guide. There are

domain name : abc.local

user mailbox  : alex@abc.local

 

domain name : xyz.local

user mailbox  : yasmin@xyz.local

 

The postfix admin login we will be using is post@example.local, where example.local will not be created in Postfixadmin's virtual domain. This is to show you that, the email system we setup later is solely running on Postfixadmin's virtual domain

 

Note:

  • I am going to show you only setup a mail server that works within your local Lan. To sent a mail outside your organization, you must make sure you have a valid domain name, DNS and MX record is configure properly. You need to change the host file under /etc/hosts  and check the /etc/nsswitch.conf to speed up the dns resolve.
  • My system is current SELinux disabled. If you wish turn Postadmin on, please relocate your Postfixadmin into /usr/share

 

 

 #cat /etc/hosts Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 centos.example.local centos localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
192.168.139.128 centos.example.local   <-- Add in your server name and IP
 

 

# cat /etc/nsswitch.conf | grep hosts
#hosts: db files nisplus nis dns
hosts: files dns  
<-- Check if this is correct 

 

Step 0: Install prerequisite packages 

If you cannot install the packages in one line, then try to install them one by one.

yum -y install system-switch-mail, dovecot, squirrelmail, mysql-server, php-imap

 

Step1: Backup the current Sendmail configuration 

CentOS Linux default MTA is Sendmail. Since we are swtching to new MTA-Postfix. It is advisable to backup current sendmail config and bin to new location before we proceed.

 

First, I will create new folder call backup. Next, I backup all the files and record the sendmail path to a text.

 

#mkdir /backup

#touch /backup/sendmail.config.location.txt

#which sendmail mailq newaliases > /backup/sendmail.config.location.txt

#which sendmail mailq newaliases
/usr/sbin/sendmail
/usr/bin/mailq
/usr/bin/newaliases


#cp -var /usr/sbin/sendmail /backup
#cp -var /usr/bin/mailq /backup
#cp -var /usr/bin/newaliases /backup

 

 

Step2  Add in CentosPlus repos for postfix 

Postfix installation by CentOS default repo does not support mysql addon. We need to use the specified postfix that enable the mysql support. Also, we want to avoid any disruptive update on our customised postfix package, you need to add in  exclude=postfix-* for base and updates repo.

 

#vim /etc/yum.repos.d/CentOS-Base.repo

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5[base]
includepkgs=postfix-*

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
exclude=postfix-*

#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
exclude=postfix-*

 

Step5: Install postfix from centosplus repo 

 

The default package of posftfix does not work with Virtual Domains and Virtual Users.  If you have installed it earlier, you must remove it. Use "rpm -e" or "yum remove"  to remove it.

 

If you are not install postfix yet, the run the following command will only download and install te postfix from centosplus.

#yum install -y --enablerepo=centosplus postfix 

 

Step6: verify the postfix package installed 

Now, let us check the packages information been installed. Good, that is the package that we need.

 

#rpm -qa postfix
postfix-2.3.3-2.1.centos.mysql_pgsql 

# rpm -qi postfix 

Name : postfix Relocations: (not relocatable)
Version : 2.3.3 Vendor: CentOS
Release : 2.1.centos.mysql_pgsql Build Date: Tue 07 Oct 2008 08:29:16 PM MYT
Install Date: Sat 20 Mar 2010 10:32:42 PM MYT Build Host: builder16.centos.org
Group : System Environment/Daemons Source RPM: postfix-2.3.3-2.1.centos.mysql_pgsql.src.rpm
Size : 8668814 License: IBM Public License
Signature : DSA/SHA1, Tue 11 Nov 2008 09:32:36 AM MYT, Key ID a8a447dce8562897
URL : http://www.postfix.org
Summary : Postfix Mail Transport Agent
Description :
Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL),
TLS

 

Step7: verify the postfix package support the mysql 

Before proceeding with the Postfix configuration, make sure that the postfix version you have has MySQL support. run postconf -m and verify that mysql appears in the list. If mysql isn’t there, uninstall postfix using yum. Then, download the centosplus repository again, and install manually.

 

#postconf -m 

btree
cidr
environ
hash
ldap
mysql   <-- this means the postfix package support the mysql database
nis
pcre
pgsql
proxy
regexp
static
unix

 

 

Step8 : Install system-switch-mail, mysql, system-switch-mail,dovecot, squirrelmail 

Now, let us download all the packages we need.

#yum -y install  php-mysql php-imap, php-ldap,  php-mbstring 

 

 

Step9: Switching default Sendmail to Postfix Linux mail system 

The system-switch-mail tool is the Mail Transpot Agent Switcher that enable you to switch within various Mail Trainsport Agent that installed at your system. If your system is using Sendmail by default, we need switch to postfix.

 

#system-switch-mail 

 

 

Step10: verify the setting of our new MTA 

Before we proceed further configuration, lets us verify on the default MTA setting. Ifeverything is correct, you should see the highlighted text changed to sendmail.postfix

#alternatives --display mta 

mta - status is manual.
link currently points to /usr/sbin/sendmail.postfix

 

We also going to check if our mailq, sendmail and aliases has the correct configured with postfix

#ls -l  /etc/alternatives/mta-*
 
 

lrwxrwxrwx 1 root root 40 Mar 13 14:08 /etc/alternatives/mta-aliasesman -> /usr/share/man/man5/aliases.postfix.5.gz
lrwxrwxrwx 1 root root 22 Mar 13 14:08 /etc/alternatives/mta-mailq -> /usr/bin/mailq.postfix
lrwxrwxrwx 1 root root 38 Mar 13 14:08 /etc/alternatives/mta-mailqman -> /usr/share/man/man1/mailq.postfix.1.gz
lrwxrwxrwx 1 root root 27 Mar 13 14:08 /etc/alternatives/mta-newaliases -> /usr/bin/newaliases.postfix
lrwxrwxrwx 1 root root 43 Mar 13 14:08 /etc/alternatives/mta-newaliasesman -> /usr/share/man/man1/newaliases.postfix.1.gz
lrwxrwxrwx 1 root root 23 Mar 13 14:08 /etc/alternatives/mta-pam -> /etc/pam.d/smtp.postfix
lrwxrwxrwx 1 root root 22 Mar 13 14:08 /etc/alternatives/mta-rmail -> /usr/bin/rmail.postfix
lrwxrwxrwx 1 root root 25 Mar 13 14:08 /etc/alternatives/mta-sendmail -> /usr/lib/sendmail.postfix
lrwxrwxrwx 1 root root 41 Mar 13 14:08 /etc/alternatives/mta-sendmailman -> /usr/share/man/man1/sendmail.postfix.1.gz

 

 

Step10: Remove Sendmail packages 

My previous post suggest that although both mail server packages (Sendmail and Postfix) are compatible with each other. I strongly suggest you remove Sendmail packages to only allow one mail system in the sever. Due to CentOS Linux needs minimum one mail server installed. You must make sure that you installed Postfix first then remove Sendmail! Else, you will faced with some libraries dependencies issues.

 

To remove Sendmail packages, please use rpm -e command

yum -y remove sendmail 

 

Part 2:  Create Virtual User, Configure Postfix, Dovecot and Mysql 

This is the Part2 of the Posft Mail System, we are going to configure the following:-

1. MySQL Server, create a postfixadmin database

2. Postfix Main.cf and create a virtual user file and virtual domain configuration files

3. Dovecot

 

Create Mysql Username, Password and Postfixadmin database 

 

Step1:  Start your mysql 

Let us start up the mysql now. Also,we want the service to be auto-startup for whenever the system is under Level 3,4,5

#service mysqld start 

#chkconfig mysqld on 

#chkconfig --list mysqld
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
 

 

Step2:  Create mysql root user password 

First we need to create a password for our root access. I also perform a new test to ensure that no blank password is accepted.

 

#mysqladmin -u root password 'your password' 

mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

mysql -u root -p
Enter password: <test on blank password>
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.0.77 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

 

Step3:  Create Postfixadmin database 

Next,we create a database named postfix and the create a user called 'mail'. Then we will give full access rights for 'mail' on postfix database.

mysql> CREATE DATABASE postfix;
mysql> 
CREATE USER mail@localhost IDENTIFIED BY 'your_password';
mysql> 
GRANT ALL PRIVILEGES ON postfix.* TO mail; 

mysql> show databases;
+--------------------+
| Database               |
+--------------------+
| information_schema |
| mysql                    |
| postfix                   |
| test                      |
+--------------------+
4 rows in set (0.00 sec)

 

Create Postfixadmin User 

 

Step1: Create a non-root user for postfixadmin 

Let us create a non-root user for our postfixa & pop administration purposes.

 

#useradd vmail  -s /sbin/nologin 

 

Now, get a paper and write down the user id & group id of vmail.

 

#id vmail
uid=501(vmail) gid=501(vmail) groups=501(vmail)
 

 

 

Configure Postfix 

Step1:  Configure the postfix main.cf file 

First modify the /etc/postfix/main.cf. We change the following lines

Note: Number in blue are line numbers. You can active it using :set nu under vi command mode


93 myorigin = $mydomain

110 inet_interfaces = all

155 mydestination = $myhostname, localhost.$mydomain, localhost

255 mynetworks = 192.168.139.0/24, 127.0.0.0/8  <--this is the ip that can used to sent email

 

Next, Add in the following lines, this will tell the system to look for postfix configuration, its virtual domains, virtual users and aliases.

 

The virtual_uid_maps : static:501. This 501 is the id of my vmail. Change this if you have diffrent id for your uid and gid.

#vim /etc/postfix/main.cf 

virtual_mailbox_domains = mysql:/etc/postfix/mysql-domains.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql-users.cf
virtual_alias_maps = mysql:/etc/postfix/mysql-aliases.cf
virtual_mailbox_base = /home/vmail
virtual_uid_maps = static:501
virtual_gid_maps = static:501

 

Step2:  Configure the postfix mysql-domians.cf file 

The following configuration will create mysql-domains.cf. This will enable postfixadmin to create virtual domain

 

 #vim /etc/postfix/mysql-domains.cf

host = localhost
user = mail
password = <your-mysql-password-here>
dbname = postfix
table = domain
select_field = domain
where_field = domain
additional_conditions = and backupmx = '0' and active = '1'

Step3:  Configure the postfix mysql-users.cf file 

The following configuration will create mysql-users.cf. This will enable postfixadmin create virtual users

 #vim /etc/postfix/mysql-users.cf 

host = localhost
user = mail
password = <your-mysql-password-here> 
dbname = postfix
table = mailbox
select_field = maildir
where_field = username
additional_conditions = and active = '1'
result_format = %sMaildir/

 

Step2:  Configure the postfix mysql-alias.cf file 

Great, the last part we should do now is to connect the postfixadmin to mysql

 

#vim /etc/postfix/mysql-aliases.cf 

host = localhost

user = mail

password = <your-mysql-password-here>

dbname = postfix

table = alias

select_field = goto

where_field = address

additional_conditions = and active = '1'

 

#service postfix start 

#chkconfig postfix on 

#chkconfig --level postfix 

 

Configuring Dovecot

 

Step 1 Check if the dovecot packages installed 

#rpm -qa dovecot 

dovecot-1.0.7-7.el5

 

Step 2 Create mysql config file for postfixadmin 

Create the file /etc/dovecot-mysql.conf containing the lines below. You might need to change your username, password and db user.

 

driver = mysql
connect = host=localhost dbname=postfix user=mail password=<your-mysql-password-here> 
default_pass_scheme = PLAIN
password_query = SELECT password FROM mailbox WHERE username = '%u'

 

Now, This is very import part, many users including me :p that make mistake on the setting. First di a backup!

 

cp /etc/dovecot.conf /etc/dovecot.ori 

 

Next edit the file /etc/dovecot.conf and change the value of the following keys below. For line 917 please make sure that your uid and gid is the same as your vmail user. Make sure you remove # sign for all the following lines.  Also, comment out all passdb and userdb setting.  Then, make a dovecot.log to ease any dovecot troubleshooting.

 61 log_path = /var/log/dovecot.log

721  auth_username_format = %Lu

869  passdb sql {
870  args = /etc/dovecot-mysql.conf
871  }

913  userdb static {
917      args = uid=501 gid=501 home=/home/vmail/%d/%n
927  }

 

Step3 Start you dovecot services 

Finally startup your dovecot services.

#service dovecot start 

#service dovecot on 

 

Part 3:  Postfixadmin Installation on CentOS Linux 

Step1: Download and extract Postfixadmin 

Current version postfix version is 2.3. For me, I always create a folder called 'software' and dump all extra packages inside.

Note: For your information, I have already turn off my SELinux. If you wish to implement SELinux, you can install posftadmin under /usr/share

 

#mkdir /software 

#cd /software 

#wget http://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin_2.3.tar.gz?use_mirror=nchc 

#tar  -xvzf postfixadmin-2.3.tar.gz 

#mv postfixadmin-2.3 postfixadmin 

 

Step2:  Configure postfixadmin configuration file 

Make a original copy of the file /software/postfixadmin/config.inc.php  before editing

#cp /software/postfixadmin/config.inc.php /software/postfixadmin/config.inc.php.ori

#vim /software/postfixadmin/config.inc.php

 

Under  /software/postfixadmin/config.inc.php,  go to the following lines and modify in the following lines.

 

Note:

  • pay attention to version of mysql you are you using
  • numeric number in blue are line number. To ease your vi editing  you can issue :set nu at vi command mode
  • only cleartext password can be used.

26 $CONF['configured'] = true;
36 $CONF['postfix_admin_url'] = '/postfixadmin';

49 $CONF['database_type'] = 'mysqli';
50 $CONF['database_host'] = 'localhost';
51 $CONF['database_user'] = 'mail';
52 $CONF['database_password'] = 'change-your-new-password-here';  
53 $CONF['database_name'] = 'postfix';
100 $CONF['encrypt'] = 'cleartext';

145 $CONF['domain_path'] = 'YES';
151 $CONF['domain_in_mailbox'] = 'NO';

272 $CONF['emailcheck_resolve_domain']='NO';

 

 

Step3:  creating apache aliase for Postfixadmin 

In the following example we are creating an aliase for postfixadmin 

 echo "Alias /postfixadmin /software/postfixadmin" > /etc/httpd/conf.d/postfixadmin.conf 

 

Step4:  start up your apache services 

service httpd start

chkconfig httpd on
 

 

Step6:  Check your postfix  services 

The postfix services should startup together with apache service if not try to start it

service postfix status 

 

Step7:  Initial setup Postfixadmin using web browser 

Launching your web browser and type in the following address

 

http://your-ip-address-here/postfixadmin/setup.php

 

 

 

The Postfixadmin checker will run a series of checking and will attempt to create/update databasestructure. If any the check is fail, kindly check on the dependencies and install it via yum command. If everything is okay you will see the following appear at the bottom of the web browser.

 

 

Step8:  Insert the hash password 

After you have put in your setup password, you will se the following screen, this are the hash key that we need to put in our /software/postfixadmin/config.inc.php file

 

Edit you config.inc.php

vim  /software/postfixadmin/config.inc.php.

 

Remove line 31  #$CONF['setup_password'] = 'changeme';

Add in  the has key generated by the setup process just now into $CONF['setup_password'] = 'your-own-hash-password'; 

 

28 // In order to setup Postfixadmin, you MUST specify a hashed password here.
29 // To create the hash, visit setup.php in a browser and type a password into the field,
30 // on submission it will be echoed out to you as a hashed value.
31 #$CONF['setup_password'] = 'changeme';  <----delete this line 
32 $CONF['setup_password'] = 'your-own-hash-password ';  <---add in this line

 

 

Next, fill in the Setup passwordAdmin and Password. Finally, click Add Admin to create a new admin account.

 

 

 

you see the following information, "Admin has been added!", The you have sucessfully create a admin account.

 

 

Important! Remove the setup.php after the installed postfix 

cd /software/posftadmin 

mv setup.php setup.ori 

 

Now Go to the Postfix Admin login page at http://your-ip-address/postfixadmin/  login using your newly created admin account.

 

 

This is the main page that you after you login to the Postfixadmin. You are now ready to create virtual users and multiple domains.

 

 







Part 4: Linux WebMail - SquirrelMail  Installation on CentOS Linux 

Step1: Check if squirrelmail packages already install
 
 

First, you can check if squirrelmail already installed  in your system.

rpm -qi squirrelmail

 

If you do not have squirelmail installed, please install now using yum command. Please make sure that you have internet connection.

yum -y install squirrelmail

 

 

Step2: configure  squirrelmail packages 

Now, we are ready to start configure our squirrelmail. Run the following command

/usr/share/squirrelmail/config/conf.pl
 

 

Next, you will see the following screen. We can start to configure the squirrelmail's server setting. Press <2> and press <Enter Button>.

Note: You can customize the squirrelmail to your organization preference such as logos, organization name etc. under Main Menu's option 1.

 

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Main Menu --
1. Organization Preferences
2. Server Settings
3. Folder Defaults
4. General Options
5. Themes
6. Address Books
7. Message of the Day (MOTD)
8. Plugins
9. Database
10. Languages

D. Set pre-defined settings for specific IMAP servers

C Turn color off
S Save data
Q Quit

Command >> 2
 

 

 

Next, press <1> to configure our domain name

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Server Settings

General
-------
1. Domain : localhost
2. Invert Time : false
3. Sendmail or SMTP : Sendmail

A. Update IMAP Settings : localhost:143 (uw)
B. Change Sendmail Config : /usr/sbin/sendmail

R Return to Main Menu
C Turn color off
S Save data
Q Quit

Command >> 1
The domain name is the suffix at the end of all email addresses. If
for example, your email address is jdoe@example.com, then your domain
would be example.com.

[localhost]: example.local

 

 

Great! Next let us save the Squirrelmail Configuration. Press <s> to save and <q> to quit.

 

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Server Settings

General
-------
1. Domain : example.local   <-- take the changes here
2. Invert Time : false
3. Sendmail or SMTP : Sendmail

A. Update IMAP Settings : localhost:143 (uw)
B. Change Sendmail Config : /usr/sbin/sendmail

R Return to Main Menu
C Turn color off
S Save data
Q Quit

Command >> s

Data saved in config.php
Press enter to continue...

Exiting conf.pl.
You might want to test your configuration by browsing to
http://your-squirrelmail-location/src/configtest.php
Happy SquirrelMailing!

 

Step3: Check your configuration

Open your browser. Then enter the address http://your-ip-address/src/configtest.php. This will run a test on your squirrelmail configuration. For security concern, you might need to move the configtest.php to some other location after the installation. The example below shows the result page of the test

 

SquirrelMail configtest 

This script will try to check some aspects of your SquirrelMail configuration and point you to errors whereever it can find them. You need to go run conf.pl in the config/ directory first before you run this script.

SquirrelMail version:

1.4.8-5.el5.centos.10

Config file version:

1.4.0

Config file last modified:

20 May 2010 14:04:49

Checking PHP configuration...
    PHP version 5.1.6 OK.
    PHP extensions OK.
Checking paths...
    Data dir OK.
    Attachment dir OK.
    Plugins OK.
    Themes OK.
    Default language OK.
    Base URL detected as: http://192.168.139.128/src (location base autodetected)
Checking outgoing mail service....
    sendmail OK
Checking IMAP service....
    IMAP server ready (* OK Dovecot ready.

 



Grow online business through search marketing

2012-08-11 @ 11:54 in Miscellaneous


purchase links

Business Through Internet:

Internet marketing is a process used for marketing products and services by using the internet as a medium of business. The way of the world is the web, and more and more organizations are moving in the direction of advertising and marketing through the web. BreezeGo is an online internet marketing platform which markets your business on the internet through competitive Internet Marketing services that reach out to millions of internet user’s everyday. The importance of online business is increased because of the rapidly increasing rate of internet users and online marketing providers.

Keeping abreast of internet marketing is also very basic and important. It is not solely about advertising or website launching. The effectiveness of these marketing instruments and methods will also have to be carefully monitored to make sure that the approach is successful and fruitful for the customer. There is no limit to internet marketing tools today. Selecting and searching effective internet marketing strategies will help make sure to boost your business activities and opportunities among a tough competitive environment. BreezeGo is the source for internet marketing.  Breezego has the potential to successfully enhance your business activity through online marketing of your products and services. Marketing through he internet has no limits and it goes beyond Search Engine Optimization. This is because SEO increases rank and competition within the search engines, thus enhancing your hard work and proficiency to reach an online target customer base. The basic features of this internet marketing service include website designing, social media optimization, log optimization and local search marketing methods and tools. Business Through Internet

1 2  Next»
    Powered by Traffic Nova