Sysadmin Tips and Tricks
Latest information and downloads for all of my sysadmin tips and tricks.
Poptester
Poptester.exp is an expect script to automate the process of testing POP3 accounts. Use it to debug connection issues. Tail the log on the server and initiate connection attempts using this script on a remote box.
Example
Usage: ./poptester.exp HOSTNAME USERNAME PASSWORD [MSGID]
Download: poptester.exp
Qmailrocks Qregex Patch
Qregex is a patch for Qmail that allows an admin to configure Qmail to automatically bounce messages based on regular expression matching in the FROM and TO addresses and the HELO handshake.
The Qmailrocks build contains other patches that conflict with the Qregex patch. I created a Qmailrocks specific Qregex patch by manually integrating the conflicting code of the Qregex patch. To integrate, download the patch, copy to the Qmail source directory and execute the following command directly before building Qmail:
Download: qregex-20040725-qmr.patch
Qmailrocks ValidRcptTo.cdb Patch
ValidRcptTo.cdb is a patch for Qmail that checks for a valid recipient email addresses in the initial SMTP connection. It can reject mail for addresses that do not exist. John Simpson’s version handles aliases, vpopmail and system accounts, Qmail’s .qmail-default aliases and utilizes a cdb database for speed. To integrate, download the patch, copy to the Qmail source directory and execute the following command directly before building Qmail:
Download: validrcptto-qmr.cdb.patch
Popular Blog Posts
if(function_exists('dp_list_meta')) :
$list_meta_posts_host = dp_list_meta('meta_key=list_meta&meta_value=sysadmin-hosting&style=xunderline');
if($list_meta_posts_host != '') :
?>
Hosting
endif;
endif;
?>
if(function_exists('dp_list_meta')) :
$list_meta_posts_scripts = dp_list_meta('meta_key=list_meta&meta_value=sysadmin-script&style=xunderline');
if($list_meta_posts_scripts != '') :
?>
Scripts
endif;
endif;
?>
if(function_exists('dp_list_meta')) :
$list_meta_posts_secure = dp_list_meta('meta_key=list_meta&meta_value=sysadmin-security&style=xunderline');
if($list_meta_posts_secure != '') :
?>
Security
endif;
endif;
?>
if(function_exists('dp_list_meta')) :
$list_meta_posts_tips = dp_list_meta('meta_key=list_meta&meta_value=sysadmin-tips&style=xunderline');
if($list_meta_posts_tips != '') :
?>
Tips
endif;
endif;
?>
if(function_exists('dp_list_meta')) :
$list_meta_posts = dp_list_meta('meta_key=list_meta&meta_value=sysadmin&style=xunderline');
if($list_meta_posts != '') :
?>
Tricks
endif;
endif;
?>
Popularity: 2%
Most Popular Posts
Previous post: Shell Scripts
Next post: Thank You