This is pam_smtpauth, a pluggable authentication module that can be used with Linux-PAM and SMTP Authentication(SMTP-AUTH).
Follow SMTP Auth Pluggable Authentication
You Might Also Like
Our Free Plans just got better! | Auth0 by Okta
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
This is a good pam pluggin! but I found a bug, when the smtp response the following information. ------------------------------------------------------------------- 220 infogo.com.cn - Welcome to Qmail igenus Ver. 5 SMTP Server ESMTP EHLO LOCALHOST 250-infogo.com.cn - Welcome to Qmail igenus Ver. 5 SMTP Server 250-STARTTLS 250-PIPELINING 250-8BITMIME 250-SIZE 0 250 AUTH LOGIN PLAIN CRAM-MD5 QUIT 221 infogo.com.cn - Welcome to Qmail igenus Ver. 5 SMTP Server ------------------------------------------------------------------- so, I modify the smtpauth.c as following diff smtpauth.c smtpauth.c-old 681c681 < if((tbuf = strstr(rbuf, "250-AUTH")) || (tbuf = strstr(rbuf, "250 AUTH")) ) { --- > if((tbuf = strstr(rbuf, "250-AUTH"))) {