fedora system-switch-mail alternative

Sam Sharpe lists.redhat at samsharpe.net
Fri Oct 1 21:14:23 UTC 2010


On 1 October 2010 22:08, David A. Paredes Rios <davidapr at gmail.com> wrote:
> Thanks Craig, actually thats are the steps that system-switch-mail do?
>

That is roughly what system-switch mail does. This is it enabling sendmail:

        os.system('/usr/sbin/alternatives --set mta
/usr/sbin/sendmail.sendmail')
        os.system('/sbin/service postfix stop 2>/dev/null >/dev/null')
        os.system('/sbin/service exim stop 2>/dev/null >/dev/null')
        os.system('/sbin/chkconfig postfix off 2>/dev/null >/dev/null')
        os.system('/sbin/chkconfig exim off 2>/dev/null >/dev/null')
        os.system('/sbin/service sendmail start 2>/dev/null >/dev/null')
        os.system('/sbin/chkconfig sendmail on 2>/dev/null >/dev/null')

You can read /usr/share/system-switch-mail/functions.py for more details.

--
Sam


More information about the users mailing list