Tlshosts/exhaustivelist and Vpopmail daemon: Difference between pages

From QmailToaster
(Difference between pages)
Jump to navigation Jump to search
No edit summary
 
No edit summary
Tag: Manual revert
 
Line 1: Line 1:
<u>'''tlshosts/exhaustivelist'''</u>
# cd /var/qmail/supervise && qmailctl stop
 
# install -d -m1751 vpopmaild && chmod 1700  vpopmaild && chown qmaill:qmail vpopmaild && install -d -m751 vpopmaild/log && chmod 0700  vpopmaild/log<br>
 
# printf '%s\n' \
man '''qmail-remote''' excerpt:
'#!/bin/sh' \
 
'QMAILDUID=`id -u vpopmail`' \
If this file exists no TLS will be tried on hosts other than those for which a file '''tlshosts/FQDN.pem''' exists.
'NOFILESGID=`id -g vpopmail`' \
 
'VPOPD=/home/vpopmail/bin/vpopmaild' \
  Stop TLS encrypiion for all domains:
'' \
  1) # mkdir /var/qmail/control/tlshosts
'exec 2>&1' 'exec /usr/bin/tcpserver -vRHD -u "$QMAILDUID" -g "$NOFILESGID" 127.0.0.1 89 $VPOPD' \
  2) # touch tlshosts/exhaustivelist
>./vpopmaild/run<br>
# printf '%s\n' \
'#!/bin/sh' \
'LOGSIZE=`cat /var/qmail/control/logsize`' \
'LOGCOUNT=`cat /var/qmail/control/logcount`' \
'exec /usr/bin/setuidgid qmaill \' \
'     /usr/bin/multilog t s$LOGSIZE n$LOGCOUNT \' \
'     /var/log/qmail/vpopmaild 2>&1' \
> ./vpopmaild/log/run<br>
  # chown -R qmaill:qmail vpopmaild && chmod 0751 ./vpopmaild/run && chmod 0751 ./vpopmaild/log/run
# qmailctl start && firewall-cmd --zone=public --add-port=89/tcp --permanent && firewall-cmd --reload
# yum -y install telnet
# telnet 127.0.0.1 89
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
+OK
quit
+OK
Connection closed by foreign host.

Revision as of 19:13, 26 March 2024

# cd /var/qmail/supervise && qmailctl stop 
# install -d -m1751 vpopmaild && chmod 1700  vpopmaild && chown qmaill:qmail vpopmaild && install -d -m751 vpopmaild/log && chmod 0700  vpopmaild/log
# printf '%s\n' \ '#!/bin/sh' \ 'QMAILDUID=`id -u vpopmail`' \ 'NOFILESGID=`id -g vpopmail`' \ 'VPOPD=/home/vpopmail/bin/vpopmaild' \ \ 'exec 2>&1' 'exec /usr/bin/tcpserver -vRHD -u "$QMAILDUID" -g "$NOFILESGID" 127.0.0.1 89 $VPOPD' \ >./vpopmaild/run
# printf '%s\n' \ '#!/bin/sh' \ 'LOGSIZE=`cat /var/qmail/control/logsize`' \ 'LOGCOUNT=`cat /var/qmail/control/logcount`' \ 'exec /usr/bin/setuidgid qmaill \' \ ' /usr/bin/multilog t s$LOGSIZE n$LOGCOUNT \' \ ' /var/log/qmail/vpopmaild 2>&1' \ > ./vpopmaild/log/run
# chown -R qmaill:qmail vpopmaild && chmod 0751 ./vpopmaild/run && chmod 0751 ./vpopmaild/log/run # qmailctl start && firewall-cmd --zone=public --add-port=89/tcp --permanent && firewall-cmd --reload # yum -y install telnet # telnet 127.0.0.1 89 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. +OK quit +OK Connection closed by foreign host.