masqmail-0.2

view contrib/rmail @ 179:ec3fe72a3e99

Fixed an important bug with folded headers! g_strconcat() returns a *copy* of the string, but hdr->value still pointed to the old header (which probably was a memory leak, too). If the folded part had been quite small it was likely that the new string was at the same position as the old one, thus making everything go well. But if pretty long headers were folded several times it was likely that the new string was allocated somewhere else in memory, thus breaking things. In result mails to lots of recipients (folded header) were frequently only sent to the ones in the first line. Sorry for the inconvenience.
author meillo@marmaro.de
date Fri, 03 Jun 2011 09:52:17 +0200
parents
children
line source
1 #!/bin/sh
2 #
3 # Dummy UUCP rmail command for postfix/qmail systems
4 #
5 # written by luciano l. mannucci <luke@nameron.smd.sublink.org>
6 # improved by Wietse Venema <wietse@porcupine.org>
7 # see:
8 # List: postfix-users
9 # Subject: Rmail: very small fix
10 # From: luke@nameron.smd.sublink.org (luciano l. mannucci)
11 # Date: 2000-09-13 14:31:30
12 # URL: http://marc.info/?l=postfix-users&m=96885536302087
13 #
14 # taken from postfix-2.5.5/auxiliary/rmail/rmail
17 SENDMAIL="/usr/sbin/sendmail"
18 IFS=" " read junk from junk junk junk junk junk junk junk relay
20 case "$from" in
21 *[@!]*) ;;
22 *) from="$from@$relay";;
23 esac
25 exec $SENDMAIL -i -f "$from" -- "$@"