Addition/Install.PostfixAdmin.For.MySQL.Backend
From iRedMail
(Difference between revisions)
Shake.chen (Talk | contribs) |
Shake.chen (Talk | contribs) |
||
| Line 1: | Line 1: | ||
iRedMail-0.7.0 removed PostfixAdmin, but you can install it to work with MySQL backend manually. | iRedMail-0.7.0 removed PostfixAdmin, but you can install it to work with MySQL backend manually. | ||
| - | =Download | + | =Download and configure PostfixAdmin = |
{{cmd|<pre> | {{cmd|<pre> | ||
# | # | ||
| Line 7: | Line 7: | ||
cd /var/www | cd /var/www | ||
wget http://www.iredmail.org/yum/misc/postfixadmin-2.3.2.tar.gz | wget http://www.iredmail.org/yum/misc/postfixadmin-2.3.2.tar.gz | ||
| + | |||
tar zxvf postfixadmin-2.3.2.tar.gz | tar zxvf postfixadmin-2.3.2.tar.gz | ||
ln -s postfixadmin-2.3.2 postfixadmin | ln -s postfixadmin-2.3.2 postfixadmin | ||
| - | + | chown -R root root postfixadmin | |
| + | chmod -R 755 postfixadmin | ||
| + | cd postfixadmin | ||
| + | wget http://code.google.com/p/iredmail/source/browse/iRedMail/patches/postfixadmin/create_mailbox.patch | ||
| + | patch -p0 < create_mailbox.patch | ||
| + | mv setup.php setup.save | ||
| + | echo '' > motd.txt | ||
| + | echo '' > motd-users.txt | ||
</pre>}} | </pre>}} | ||
Revision as of 05:51, 10 March 2011
iRedMail-0.7.0 removed PostfixAdmin, but you can install it to work with MySQL backend manually.
Download and configure PostfixAdmin
| Terminal: |
# # ---- On RHEL/CentOS ---- cd /var/www wget http://www.iredmail.org/yum/misc/postfixadmin-2.3.2.tar.gz tar zxvf postfixadmin-2.3.2.tar.gz ln -s postfixadmin-2.3.2 postfixadmin chown -R root root postfixadmin chmod -R 755 postfixadmin cd postfixadmin wget http://code.google.com/p/iredmail/source/browse/iRedMail/patches/postfixadmin/create_mailbox.patch patch -p0 < create_mailbox.patch mv setup.php setup.save echo '' > motd.txt echo '' > motd-users.txt |
