在Fedora上建立自己的邮件服务器(1)_Mail服务器教程
A.检查你的系统是否已安装了以下软件
1.pam
2.pam-devel
3.mysql
4.mysql-servel
5.mysql-devel
6.imap-devel
7.sharutils
B.下载以下软件
1.metamail*.i386.rpm
2.pam-mysql
3.cyrus-sasl-2.1.15
4.postfix-2.0.16
5.courier-imap
C.说明
mysql-devel在第3个盘。我忘了装,结果pam-mysql和postfix的编译过不了。metamail和sharutils是取验证码用的。
二、mysql数据库和表的建立
A.[root@localhost root]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 to server version: 3.23.58 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> INSERT INTO db (Host,Db,User,Select_priv)VALUES('localhost','postfix','postfix','Y'); Query OK, 1 row affected (0.00 sec) mysql> CREATE DATABASE postfix; Query OK, 1 row affected (0.00 sec) mysql> GRANT ALL ON postfix.* TO postfix@localhost -> IDENTIFIED BY "postfix"; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) mysql> quit Bye |
B.把下列文字复制存为postfix.sql
########potfix_sql########bigin################## CREATE TABLE alias ( username varchar(255) NOT NULL default'', goto text NOT NULL, domain varchar(255) NOT NULL default'', PRIMARY KEY (username) ) TYPE=MyISAM; CREATE TABLE domain ( CREATE TABLE mailbox ( [root@localhost root]# mysql postfix < /work/postfix.sql |
- 相关链接:
- 教程说明:
Mail服务器教程-在Fedora上建立自己的邮件服务器(1)。