Skip to Content.
Sympa Menu

en - Re: [sympa-users] /etc/mail/sympa_aliases

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: John Dalbec <address@concealed>
  • To: address@concealed
  • Subject: Re: [sympa-users] /etc/mail/sympa_aliases
  • Date: Fri, 10 Oct 2003 14:59:30 -0400

Let me ask this:

Could the following section of the RPM post-install script:

# create the alias file used by sympa for his lists
if [ ! -d "/etc/mail" ]; then
mkdir -p /etc/mail
fi
touch /etc/mail/sympa_aliases || /bin/true
chown sympa.sympa /etc/mail/sympa_aliases
chmod 0640 /etc/mail/sympa_aliases

be modified to

# create the alias file used by sympa for its lists if it does not exist
if [ ! -f "/etc/mail/sympa_aliases" ]; then
if [ ! -d "/etc/mail" ]; then
mkdir -p /etc/mail
fi
touch /etc/mail/sympa_aliases || /bin/true
chown sympa.sympa /etc/mail/sympa_aliases
chmod 0640 /etc/mail/sympa_aliases
fi

I need to have /etc/mail/sympa_aliases be sympa.exim for my MTA configuration to work, and it's annoying to have to reset that every time I install a Sympa update.

Thanks,
John





Archive powered by MHonArc 2.6.19+.

Top of Page