From Fedora Project Wiki
(This feature is about making the MTA optional, not removing it)
Line 2: Line 2:


== Summary ==
== Summary ==
Don't ship a MTA by default for the desktop.
Make the MTA (i.e. <code>/usr/sbin/sendmail</code>) optional.


== Owner ==
== Owner ==
Line 20: Line 20:


Done:
Done:
* Write a patch for cronie that will redirect messages that would be sent to a MTA to syslog in the event a MTA is not present. Submit patch to cronie upstream.
* Patch {{package|cronie}} to redirect messages that would be sent to a MTA to syslog in the event a MTA is not present.
** Patches written and submitted; see {{bz|548843}}
** Patch submitted in {{bz|548843}}, applied to cronie-1.4.4, currently in F13.
** Patch applied to cronie-1.4.4, currently in F13.
* Add sendmail to comps to ensure it is still installed by default, as expected
** <code>sendmail</code> is listed in the <code>base</code> group.
** This is for compatibility purposes and should be removed in a future release


TODO:
TODO:
* Modify default crond config to use syslog instead of sendmail
* Add comment to <code>/etc/sysconfig/crond</code> that shows how to use syslog instead of sendmail:
** set <code>CRONDARGS="-s -m off"</code> in <code>/etc/sysconfig/crond</code>
# To send cron output to syslog instead of local mail, set CRONDARGS to:
#CRONDARGS="-s -m off"
* Remove cronie's hard requirement on <code>/usr/sbin/sendmail</code>
* Patch the default configuration for logwatch to not send mail, but to send messages to stdout and then verify the patch to cronie is reporting logwatch messages to syslog accordingly.
* Patch the default configuration for logwatch to not send mail, but to send messages to stdout and then verify the patch to cronie is reporting logwatch messages to syslog accordingly.
* Verify there are no other packages that will require a patch to function without a MTA
* Verify there are no other packages that will require a patch to function without a MTA


== Detailed Description ==
== Detailed Description ==
The shipping of a default MTA has long been the de facto standard, but for the vast majority of users this is simply wasted resources and wasted disk space for the packages installed. Without an MTA the utilities that would have previously delivered local mail will just simply silently not deliver mail. Instead we can redirect the output to a log and those users who need a MTA are free to install any one they so choose.
The presence of a Mail Transfer Agent (MTA) like <code>sendmail</code> has long been the de facto standard. But most systems that aren't mail servers do not specifically need to keep local mail queues or transfer mail to other systems. For the vast majority of users this is simply wasted resources and wasted disk space for the packages installed.  
 
<code>cron</code> is the only thing in a default Fedora install that still uses local mail to report its status. The <code>cron</code> syslog facility exists for this purpose, and our current <code>cron</code> setup already uses it<ref><code>/usr/bin/run-parts</code> runs all the cron jobs in <code>/etc/cron.{hourly,daily,weekly,monthly}</code> - see <code>/etc/cron.d/0hourly</code> (which runs the jobs in <code>/etc/cron.hourly</code>) and <code>/etc/anacrontab</code> (which launches the daily/weekly/monthly jobs.)</ref> to log ''some'' messages<ref>In fact, our current setup does ''not'' log the output of cron jobs to <code>/var/log/cron</code> - this feature would fix that.</ref> to <code>/var/log/cron</code>.
 
This feature allows <code>cron</code> to optionally use syslog instead of email to report job status, thus making the presence of an MTA completely optional.


== Benefit to Fedora ==
== Benefit to Fedora ==
Less used disk space for default install, less used resources, stopping of the MTA madness.
One less required package in the critical path, and we clear the way for removing the MTA from the default install.


== Scope ==
== Scope ==
MTAs are not a necessary daemon on a desktop system, so we need not include one by default.
 
Packages that may require changes:
* {{package|cronie}} - {{bz|472710}}
* {{package|crontabs}}
* {{package|logwatch}}
 
=== cronie ===


<code>cronie</code> is the only package in a default Fedora install that requests the use of an MTA. If <code>/usr/sbin/sendmail</code> is not present, it will simply stop sending mail. Therefore, if we modify <code>cronie</code> to send job output to a log file, we can remove the requirement for an MTA with no loss of functionality.
<code>cronie</code> is the only package in a default Fedora install that requests the use of an MTA. If <code>/usr/sbin/sendmail</code> is not present, it will simply stop sending mail. Therefore, if we modify <code>cronie</code> to send job output to a log file, we can remove the requirement for an MTA with no loss of functionality.
The <code>cron</code> syslog facility exists for this purpose, and our current <code>cron</code> setup already uses it<ref><code>/usr/bin/run-parts</code> runs all the cron jobs in <code>/etc/cron.{hourly,daily,weekly,monthly}</code> - see <code>/etc/cron.d/0hourly</code> (which runs the jobs in <code>/etc/cron.hourly</code>) and <code>/etc/anacrontab</code> (which launches the daily/weekly/monthly jobs.)</ref> to log ''some'' messages<ref>In fact, our current setup does ''not'' log the output of cron jobs to <code>/var/log/cron</code> - this feature would fix that.</ref> to <code>/var/log/cron</code>.


Required changes:
Required changes:
# Modify <code>cronie</code> to send job output to the <code>cron</code> syslog facility if <code>sendmail</code> is missing
# Modify <code>cronie</code> to send job output to the <code>cron</code> syslog facility if <code>sendmail</code> is missing
#* In <code>/etc/sysconfig/crond</code> set <code>CRONDARGS="-s -m off"</code>
# Remove <code>Requires: /usr/sbin/sendmail</code> from {{package|cronie}}'s spec file
# Remove <code>Requires: /usr/sbin/sendmail</code> from {{package|cronie}}'s spec file
# Add comments to default/example <code>crontab</code> that sendmail must be installed and <code>CRONDARGS</code> changed for mail sending to work


Packages that may require changes:
=== crontabs ===
* {{package|cronie}} - {{bz|472710}}
 
* {{package|crontabs}}
<code>crontabs</code> need to be examined to be sure none of them depend on local mail being sent.
* {{package|logwatch}}
 
=== logwatch ===
 
<code>logwatch</code> needs to be examine to see if it actually depends on cron sending email, and patched to use stdout/syslog if so.


== How To Test ==
== How To Test ==


Uninstall sendmail on your current machine and enjoy the "no warning messages, no crashing, just blissful MTA-free silence" - wwoods
# Ensure you have <code>cronie-1.4.4-1.fc13</code> or higher installed.
# Edit <code>/etc/sysconfig/crond</code> and set <code>CRONDARGS="-s -m off"</code>
# <code>service crond restart</code>
# <code>yum remove sendmail</code> (or whichever package is providing your <code>/usr/sbin/sendmail</code>)
#* This step won't work yet - cronie-1.4.4-1.fc13 still requires <code>/usr/sbin/sendmail</code>. Skip it for now.
# Verify that all output from cron jobs shows up in <code>/var/log/cron</code>


== User Experience ==
== User Experience ==
<!-- If this feature is noticeable by its target audience, how will their experiences change as a result?  Describe what they will see or notice. -->
<!-- If this feature is noticeable by its target audience, how will their experiences change as a result?  Describe what they will see or notice. -->
Transparent to majority of users, will add a 'yum install <insert-MTA-here>' step to advanced users who have an actual use case for a MTA on their machines.
Transparent to most users. System administrators or integrators who were relying on the implicit dependency on <code>/usr/bin/sendmail</code> may need to update their kickstart files etc. to explicitly install their chosen MTA.


== Dependencies ==
== Dependencies ==

Revision as of 17:08, 23 March 2010

No MTA

Summary

Make the MTA (i.e. /usr/sbin/sendmail) optional.

Owner

  • email: maxamillion [AT] gmail.com

Current status

  • Targeted release: Fedora 13
  • Last updated: 23 March 2010
  • Percentage of completion: 90%

Working:

  • Everything as designed (Aside from messages that would normally be sent via a MTA)

Done:

  • Patch Package-x-generic-16.pngcronie to redirect messages that would be sent to a MTA to syslog in the event a MTA is not present.
    • Patch submitted in RHBZ #548843, applied to cronie-1.4.4, currently in F13.
  • Add sendmail to comps to ensure it is still installed by default, as expected
    • sendmail is listed in the base group.
    • This is for compatibility purposes and should be removed in a future release

TODO:

  • Add comment to /etc/sysconfig/crond that shows how to use syslog instead of sendmail:
# To send cron output to syslog instead of local mail, set CRONDARGS to:
#CRONDARGS="-s -m off"
  • Remove cronie's hard requirement on /usr/sbin/sendmail
  • Patch the default configuration for logwatch to not send mail, but to send messages to stdout and then verify the patch to cronie is reporting logwatch messages to syslog accordingly.
  • Verify there are no other packages that will require a patch to function without a MTA

Detailed Description

The presence of a Mail Transfer Agent (MTA) like sendmail has long been the de facto standard. But most systems that aren't mail servers do not specifically need to keep local mail queues or transfer mail to other systems. For the vast majority of users this is simply wasted resources and wasted disk space for the packages installed.

cron is the only thing in a default Fedora install that still uses local mail to report its status. The cron syslog facility exists for this purpose, and our current cron setup already uses it[1] to log some messages[2] to /var/log/cron.

This feature allows cron to optionally use syslog instead of email to report job status, thus making the presence of an MTA completely optional.

Benefit to Fedora

One less required package in the critical path, and we clear the way for removing the MTA from the default install.

Scope

Packages that may require changes:

cronie

cronie is the only package in a default Fedora install that requests the use of an MTA. If /usr/sbin/sendmail is not present, it will simply stop sending mail. Therefore, if we modify cronie to send job output to a log file, we can remove the requirement for an MTA with no loss of functionality.

Required changes:

  1. Modify cronie to send job output to the cron syslog facility if sendmail is missing
  2. Remove Requires: /usr/sbin/sendmail from Package-x-generic-16.pngcronie's spec file

crontabs

crontabs need to be examined to be sure none of them depend on local mail being sent.

logwatch

logwatch needs to be examine to see if it actually depends on cron sending email, and patched to use stdout/syslog if so.

How To Test

  1. Ensure you have cronie-1.4.4-1.fc13 or higher installed.
  2. Edit /etc/sysconfig/crond and set CRONDARGS="-s -m off"
  3. service crond restart
  4. yum remove sendmail (or whichever package is providing your /usr/sbin/sendmail)
    • This step won't work yet - cronie-1.4.4-1.fc13 still requires /usr/sbin/sendmail. Skip it for now.
  5. Verify that all output from cron jobs shows up in /var/log/cron

User Experience

Transparent to most users. System administrators or integrators who were relying on the implicit dependency on /usr/bin/sendmail may need to update their kickstart files etc. to explicitly install their chosen MTA.

Dependencies

none

Contingency Plan

Do Nothing.

Documentation

  • None

Release Notes

  • None

References

  1. /usr/bin/run-parts runs all the cron jobs in /etc/cron.{hourly,daily,weekly,monthly} - see /etc/cron.d/0hourly (which runs the jobs in /etc/cron.hourly) and /etc/anacrontab (which launches the daily/weekly/monthly jobs.)
  2. In fact, our current setup does not log the output of cron jobs to /var/log/cron - this feature would fix that.

Comments and Discussion