You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
909 B
33 lines
909 B
#!/bin/bash
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
# Christoph Galuschka <christoph.galuschka@chello.at>
|
|
|
|
t_Log "Running $0 - adding pop3test local user account + attempting POP3 login"
|
|
|
|
if [ "$CONTAINERTEST" -eq "1" ]; then
|
|
t_Log "Running in container -> SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
{ userdel -rf pop3test; useradd pop3test && echo pop3test | passwd --stdin pop3test; } &>/dev/null
|
|
|
|
# creating maildir in HOME, else test will fail at first try
|
|
mkdir -m 700 -p /home/pop3test/mail/.imap/INBOX
|
|
chown -R pop3test:pop3test /home/pop3test/mail/.imap/INBOX
|
|
|
|
t_Log "Dovecot POP3 login test"
|
|
# EL7 comes with nmap-nc , different from nc so different options to use
|
|
|
|
if [ "$centos_ver" -ge 7 ];then
|
|
nc_options="-d 3 -w 5"
|
|
else
|
|
nc_options="-i 3 -w 5"
|
|
fi
|
|
|
|
|
|
echo -e "user pop3test\npass pop3test\n" | nc ${nc_options} localhost 110 | grep -q "+OK Logged in."
|
|
|
|
t_CheckExitStatus $?
|
|
|
|
userdel -rf pop3test
|