Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/sendmail/ |
Upload File : |
#!/bin/sh -e #----------------------------------------------------------------------------- # # $Sendmail: update_smrsh,v 8.15.2 2020-03-08 00:39:49 cowboy Exp $ # # Update MDA programs used by Sendmail for Debian # # Copyright (c) 2002-2010 Richard Nelson. All Rights Reserved. # # Notes (to all): # * The entries in /etc/mail/smrsh are used by the feature(smrsh) and # sensible-mda. # # Notes (to self): # * # #----------------------------------------------------------------------------- set -e; # flag used to indicate a dataset has been moved, may need another update changed=0; new=1; def_progs="\ /usr/lib/sm.bin/mail.local \ /usr/lib/sm.bin/sensible-mda \ /usr/bin/vacation \ /usr/bin/procmail \ /usr/bin/maildrop \ /usr/bin/deliver \ "; # Path to other sendmail helpers if [ -x ./update_sendmail ]; then sm_path='.'; elif [ -x $(dirname $0)/update_sendmail ]; then sm_path=$(dirname $0); else sm_path=/usr/share/sendmail; fi; # Bring in sendmail.conf for the network definitions if [ ! -f /etc/mail/sendmail.conf ]; then if [ -x $sm_path/update_conf ]; then $sm_path/update_conf; fi; fi; if [ -f /etc/mail/sendmail.conf ]; then . /etc/mail/sendmail.conf; fi; if [ "$HANDS_OFF" != 'No' ]; then exit 0; fi; echo " "; echo "Checking for installed MDAs..."; #------------------------------------------------------------------------------ # /etc/mail/smrsh is where the links to MDAs and authorized forwarding progs if [ ! -e /etc/mail/smrsh ]; then changed=1; new=1; fi; chown smmta:smmsp /etc/mail/smrsh; chmod 02755 /etc/mail/smrsh; #------------------------------------------------------------------------------ # Iterate over the default list of programs and create any missing items for file in $def_progs; do ppath=$(dirname "$file"); pname=$(basename "$file"); # the file doesn't exist, see if we can remove its link if [ ! -e $file ]; then # let have there own version eh? if [ -e /etc/mail/smrsh/$pname ]; then true; # no, if its a danglink symlink, drop it elif [ -L /etc/mail/smrsh/$pname ]; then echo "Removing link for no longer extant program ($pname)"; rm /etc/mail/smrsh/$pname; fi; # the file exists, see if we need to add its link elif [ ! -e /etc/mail/smrsh/$pname ]; then echo "Adding link for newly extant program ($pname)"; ln -sf $file /etc/mail/smrsh/$pname; changed=1; fi; done; #------------------------------------------------------------------------------ exit $changed;