[PATCH 2/4] auth_vpopmail_sql test, eval 'use DBI' before testing

2012-05-21 Thread Matt Simerson
--- t/plugin_tests/auth/auth_vpopmail |2 +- t/plugin_tests/auth/auth_vpopmail_sql | 13 + 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/t/plugin_tests/auth/auth_vpopmail b/t/plugin_tests/auth/auth_vpopmail index 11cbdfa..1c56609 100644 --- a/t

[PATCH 02/28] updates to auth_vpopmail_sql module

2010-05-10 Thread Matt Simerson
updates to auth_vpopmail_sql module - moved vpopmail database parameters into config files - added LIMITATIONS section to POD, noting no support for alias domains - renamed sub from authsql (too generic) to auth_vmysql --- plugins/auth/auth_vpopmail_sql | 63

Re: [PATCH 02/28] updates to auth_vpopmail_sql module

2010-05-10 Thread Matt Simerson
, Matt On May 10, 2010, at 4:13 PM, Matt Simerson wrote: updates to auth_vpopmail_sql module - moved vpopmail database parameters into config files - added LIMITATIONS section to POD, noting no support for alias domains - renamed sub from authsql (too generic) to auth_vmysql --- plugins/auth

Re: [PATCH 02/28] updates to auth_vpopmail_sql module

2010-05-10 Thread Robert Spier
Committed to my tree as 0ae24edc55804c4749a9da880ec45050bead629e. (Trailing whtiespace cleaned up first.) Matt Simerson wrote: updates to auth_vpopmail_sql module - moved vpopmail database parameters into config files - added LIMITATIONS section to POD, noting no support for alias

Re: [PATCH 02/28] updates to auth_vpopmail_sql module

2010-05-10 Thread Robert Spier
that precludes any possibility of corruption or mangling. Thanks, Matt On May 10, 2010, at 4:13 PM, Matt Simerson wrote: updates to auth_vpopmail_sql module - moved vpopmail database parameters into config files - added LIMITATIONS section to POD, noting no support for alias domains - renamed

[PATCH] auth_vpopmail_sql

2010-03-29 Thread David Raab
Hi there, i had setup a qpsmtpd with vpopmail, but i ran into some problems. I fixed these and i want to contribute it, i think it can be useful to others. I primary had two problems with auth_vpopmail_sql 1) We had some customers that uses the old email scheme account%example.org instead of acco

Re: auth_vpopmail_sql

2005-04-01 Thread John Peacock
Christopher Heschong wrote: Hi Jeff, I wrote a plugin that I posted to this list a while back that will authenticate to the local IMAP server, so if you already have IMAP or POP3 setup on your server with whatever backend authentication mechanisms you might need (vpopmail, etc), you don't have

Re: auth_vpopmail_sql

2005-04-01 Thread Christopher Heschong
You are certainly correct, it was written for my own personal use. On my system, I use vmailmgr which stores its passwd info in cdb files owned by the user in their home dir... no way for a non-root process to read them that I can think of. I think that is why Jeff asked about the

Re: auth_vpopmail_sql

2005-03-31 Thread Christopher Heschong
temporarily but I'd be interested in adding support for vdomains if thats actually my problem. On Tue, 29 Mar 2005 21:14:39 -0500, Bob [EMAIL PROTECTED] wrote: Bob wrote: Fred Moyer wrote: Jeff Roberts wrote: hello, I'd like to use the auth_vpopmail_sql plugin so that some remote users can send thru

Re: auth_vpopmail_sql

2005-03-30 Thread John Peacock
Jeff Roberts wrote: as best I can tell this plugin was written for a vpopmail install that lacks virtual domains. my vpopmail db does not contain a vpopmail table within it, but it has tables for each virtual domain hosted. I hacked up the code to get the smtp auth i needed for one domain

auth_vpopmail_sql

2005-03-29 Thread Jeff Roberts
hello, I'd like to use the auth_vpopmail_sql plugin so that some remote users can send thru our mail server, but I can't find any examples of folks using it so I'm not sure where to put it in config/plugins or the syntax to call it. Could anyone give me an example config that uses that plugin

Re: auth_vpopmail_sql

2005-03-29 Thread Bob
Bob wrote: Fred Moyer wrote: Jeff Roberts wrote: hello, I'd like to use the auth_vpopmail_sql plugin so that some remote users can send thru our mail server, but I can't find any examples of folks using it so I'm not sure where to put it in config/plugins or the syntax to call it. Could anyone

cvs commit: qpsmtpd/plugins/auth auth_vpopmail_sql

2005-02-10 Thread jpeacock
cvsuser 05/02/10 06:33:14 Modified:plugins/auth auth_vpopmail_sql Log: * plugins/auth/auth_vpopmail_sql Handle case where pw_clear_passwd doesn't exists in vpopmail database Revision ChangesPath 1.5 +6 -2 qpsmtpd/plugins/auth/auth_vpopmail_sql

Re: auth_vpopmail_sql crypt [PATCH]

2004-12-11 Thread John Peacock
Fred Moyer wrote: So maybe select * from vpopmail, fetchrow_hashref, then a check for pw_clear_passwd in the results to determine how vpopmail was built will do the trick? Bother! Yes, that's what we'll have to do. I'll see if I can get another patch out later today (got to help my daughter

Re: auth_vpopmail_sql crypt [PATCH]

2004-12-09 Thread Fred Moyer
However, the PLAIN and LOGIN mechanisms send the password over the wire (base64 encoded in the case of the LOGIN), so it would be possible to support crypted passwords there, but then the plugin couldn't support CRAM-MD5 at all. Correct, the changes I made won't support crypted passwords

Re: auth_vpopmail_sql crypt [PATCH]

2004-12-09 Thread John Peacock
Fred Moyer wrote: Correct, the changes I made won't support crypted passwords with CRAM-MD5, but I think the plugin can still be used in CRAM-MD5 mode with these mods. No, it cannot; you've completely removed the plaintext password which CRAM-MD5 requires to operate. I'll see about rewriting the

auth_vpopmail_sql crypt [PATCH]

2004-12-08 Thread Fred Moyer
Hello qpsmtpd email list! I made some very minor changes to the auth_vpopmail_sql auth plugin for using vpopmail with encrypted passwords. I did not see a straightforward approach to integrating these changes into auth_vpopmail_sql, as it is supporting cram-md5 based as well as plain text auth