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 give me an example config that uses > that plugin?
Sure! In config/plugins I have: ... auth/auth_vpopmail_sql quit_fortune check_earlytalker And in plugins/auth/auth_vpopmail_sql you need to configure the database connection: 66 my $connect = "dbi:mysql:dbname=vpopmail:host=my_database_host"; 67 my $dbuser = "my_vpopmail_user"; 68 my $dbpasswd = "my_vpopmail_user_password"; It's as simple as that!