masqmail

view admin/rmail @ 392:c5fd796ea06e

Heavy refactoring in parts of conf.c. init_conf() parse_boolean() parse_list_file() Re-arrangement of code. parse_address_glob_list() Removed unneccessary parameter. parse_list() parse_interface(): Use strtok()/strchr() instead of doing is all by hand. Removed limitation of fixed size buffer. eat_comments() Use a state machine. eat_line_trailing() eat_spaces() read_lval() Better structured code. read_conf() read_route() Removed magic numbers. Made all list type in the config files accept pathname entries, except for `permanent_routes' and `query_routes.' for which this is impossible.
author markus schnalke <meillo@marmaro.de>
date Sat, 18 Feb 2012 18:07:55 +0100
parents 92673a185add
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" -- "$@"