Hallo
Danke für Deine Antwort - hier die rc.conf. M.E. ohne irgenwelche
Merkwürdigkeiten:
accounting_enable="NO"
ifconfig_vr0="DHCP"
hostname="FS2.xyz.local"
#hostname="FS2"
keymap="german.iso"
sshd_enable="YES"
usbd_enable="YES"
moused_port="/dev/psm0"
moused_type="auto"
moused_enable="YES"
samba_enable="YES"
sendmail_enable="NO"
sendmail_submit_enable="YES"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="YES"
saver="logo"
blanktime="300"
Noch mal das was ich glaube rausgefunden zu haben: Wenn ein Prozess (beim
booten z.B.) in der defaults/rc.conf
Die Funktion "source_rc_confs" anspricht wurde sendmail aufgerufen. Dies
auch z.B. von "save-entropy"
- ohne irgendwelche Optionen, so dass sendmail natürlich nach dem
recipienten meckerte.
default/rc.conf
if [ -z "${source_rc_confs_defined}" ]; then
source_rc_confs_defined=yes
source_rc_confs () {
local i sourced_files
for i in ${rc_conf_files}; do
case ${sourced_files} in
*:$i:*)
;;
*)
sourced_files="${sourced_files}:$i:"
if [ -r $i ]; then
. $i
fi
;;
esac
done
}
fi
/usr/libexec/save-entropy
Folgender Block :
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
source_rc_confs
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
Hier mein Test-Sendmail um rauszubekommen was da abgeht:
#! /bin/sh
LOG="/tmp/sendmail-debug.log"
date >> $LOG
echo "Aufruf: '$*'" >> $LOG
echo "----- STDIN Anfang" >> $LOG
cat >> $LOG
echo "----- STDIN ENDE" >> $LOG
echo "" >> $LOG
Viele Grüße
Nicola
------------------------------------------------------------------
PGP Key-ID: 0x2E1351B9
PGP Fingerprint: 016B C1A6 A56F 0976 E8A2 E624 D166 7532 2E13 51B9
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Fri 04 Nov 2005 - 14:50:38 CET