Re: Auth on outgoing and dkim signing

2017-02-07 Thread frank
On Tue, 7 Feb 2017, Kjetil Kjernsmo wrote: On Monday 6. February 2017 01.15.30 frank wrote: I literally just did DKIM last week. And the way I did it didn't touch qpsmtpd, instead it's a couple helper scripts that feed qmail-remote, messages are signed as they're being sent out. Ah, TIMTOWDI

Re: Auth on outgoing and dkim signing

2017-02-05 Thread frank
will need to grab http://www.memoryhole.net/qmail/dkimsign.pl and http://www.memoryhole.net/qmail/qmail-remote.sh Qmail TLS patch was from http://inoa.net/qmail-tls/ Hope this gives you a start. -frank P.S. If you're using tcpserver you should be able to add your subnet to your tcp.cdb with a tag

relay plugin ignores empty $ENV{RELAYCLIENT}

2015-07-19 Thread frank
Upgrading from a heavily customized and ancient version, I've always used an empty $RELAYCLIENT in my tcpserver configs but the latest version ignores the empty variable. This fixed it for me. -frank diff --git a/plugins/relay b/plugins/relay index fdae3ad..6c7974b 100644 --- a/plugins

Working vpopmail valid user checker

2010-03-21 Thread Frank Precissi
version of qpsmtpd). Thanks everyone! Frank

Re: using as spamproxy

2006-10-20 Thread Frank Habermann
when the real smtpserver will not accapt the mail? regards, Frank Charles Butcher schrieb: Easy, just use the queue/smtp-forward plugin. Any mail that is not rejected will be forwarded to the real smtpserver. On 20/10/2006, at 07:59, Frank Habermann wrote: Hello, i am new to qpsmtpd

using as spamproxy

2006-10-19 Thread Frank Habermann
will be denied and not marked as spam. so the spammail will not going into any mailaccount. Is it possible to do something like this with qpsmtpd? or with some modifications? Sounds that interessint to you? Thanks for feedback. regards Frank Habermann pgp9eUfCC467P.pgp Description: PGP signature

Re: Should spamhelo DENY_DISCONNECT?

2006-02-08 Thread frank
Here's my take: Ever met an MTA/MUA that _changed_ it's HELO name mid-stride when you refused the first one? I didn't think so. My copy uses DENY_DISCONNECT :) -f On Wed, 8 Feb 2006, John Peacock wrote: Date: Wed, 08 Feb 2006 11:10:50 -0500 From: John Peacock [EMAIL PROTECTED] To:

Re: OK, DENYSOFT_DISCONNECT then (Re: Should spamhelo DENY_DISCONNECT?)

2006-02-08 Thread frank
Oh, quite right, sorry about that, thanks for clearing up that point. I totally skipped the part about the retries, my mail-skimming abilities seem to be failing me. Although I don't have a better work-around, I still find that to be a kludge to fix someone else's broken propreitary code.

[OT] Re: [perl #38268] checkpassword support

2006-01-18 Thread frank
Are these mails going to keep coming in like this? I didn't sign up for the -bugs-followup list and it's being marked as potential spam in my folders. Is this being done manually (like via BCC) or does the -bugs-followup list automatically forward to the main list? -f On Wed, 18 Jan 2006,

[OT] Re: [perl #38268] checkpassword support

2006-01-18 Thread frank via RT
Are these mails going to keep coming in like this? I didn't sign up for the -bugs-followup list and it's being marked as potential spam in my folders. Is this being done manually (like via BCC) or does the -bugs-followup list automatically forward to the main list? -f On Wed, 18 Jan 2006, Bob

bug(?) in lib/Qpsmtpd/SMTP.pm

2005-12-23 Thread frank
Maybe what I'm looking for is out-of-spec and that's why it doesn't work by default, I'm sure you folks can tell me. As I've stated in other posts, I tend to be a BOFH and am overly protective of my server. As a result I edited the clamdscan plugin to return DENY_DISCONNECT instead of DENY.

Re: PATCH: let forkserver listen on multiple interfaces

2005-07-06 Thread frank
On Wed, 6 Jul 2005, Charlie Brady wrote: On Wed, 6 Jul 2005, Matt Sergeant wrote: On 6 Jul 2005, at 15:40, Charlie Brady wrote: That's an added complication, and more code - which usually means that more things can go wrong. In what circumstances would someone want more than one interface,

Re: [QPSMTPD] Can I grab this info for use in plugins?

2005-01-14 Thread frank
That info is in the connection object. I use: my $remote_host = $self-qp-connection-remote_host; my $remote_ip = $self-qp-connection-remote_ip; .enjoy -f On Sat, 15 Jan 2005 [EMAIL PROTECTED] wrote: Date: Sat, 15 Jan 2005 00:29:05 + (UTC) From: [EMAIL PROTECTED] To: qpsmtpd ML

Re: spool dir

2004-05-31 Thread frank
A couple grep's and less's later The spool_dir is mentioned solely in lib/Qpsmtpd/Transaction.pm but does appear to be configurable. From my brief sift thru the source, it would appear to me that the spool_dir is used to hold the body of each message as it is passsed from plug-in to

Re: check_hostbyrename (discussion)

2004-03-23 Thread frank
attempts are coming from hostnames that I block. Bonus. -Frank P.S. I've also since renamed the plugin to hnbl: HostName Bl[ao]ckList (haven't nailed down the vowel yet) because the old name was ugly in my logs. On Tue, 23 Mar 2004, Skaag Argonius wrote: # I disagree with you and robert about remote

Re: check_hostbyrename (discussion)

2004-03-23 Thread frank
or hotmail. If the account starts getting overrun with spam (it will happen) make a new one and put it in your code. http://web.they.org/software/mailfun/hnbl.php .enjoy -Frank On Tue, 23 Mar 2004, Sam Laffere wrote: # frank wrote: # (note: I'm the author) # # I have to agree with this guy here

Re: clamav plugin?

2004-01-30 Thread frank
The AllowSupplementaryGroups option is so I can add the clamav user to the smtp user's group so user clamav can read the files to scan. I also had to chmod the files for group readablility inside the plugin. -f On Fri, 30 Jan 2004 [EMAIL PROTECTED] wrote: # On Wed, 28 Jan 2004, frank wrote: # # Just today I

Re: clamav plugin?

2004-01-30 Thread frank
Why not use the native perl function instead of calling out to system()? In my plugins/clamav I added (right after the tempfile creation): chmod 0640, $filename; For troubleshooting purposes, it's handy to comment out the line: unlink($filename); about halfway down the clam_scan() function.

Re: clamav plugin?

2004-01-29 Thread frank
the extra header if needed, but this fors fine in my specific setup. -Frank P.S. If your question was related to the 'clamdscan' vs 'clamscan', the former is a client to the 'clamd' daemon and the latter is a stand-alone scanner. Since today was my first day with clamav (and since I had so many

Re: client hostname regexp match plugin

2004-01-19 Thread frank
the spam-trojan infection is. -Frank On Tue, 20 Jan 2004, Peter J. Holzer wrote: # Is there a plugin which matches client hostnames # ($qp-connection-remote_host) against a regexp to block them? # # Given that lots of spam sources are hosted at comcast and other # providers with easily identifyable

Stripping Attachments

2004-01-10 Thread Frank Precissi
be modified to handle multiple attachments? Thanks! Frank

Re: Praser for log/main/current?

2003-12-11 Thread frank
there. The syslogviewer doesn't squish lines into 80 columns tho, it prints in full glory. And like other people's analyzers, my scripts are rather specialized for my needs but should be just general enough to be useful by others. http://web.they.org/software/weblogtail.html -Frank On Thu, 11 Dec 2003, Michael

missing lc() in check_badrcptto?

2003-11-06 Thread frank
In plugins/check_badrcptto, is there a particular reason $recipient-user isn't lowercased while $recipient-host is? Or was it just oversight? -Frank

qpsmtpd and rate limiting/tarpitting

2003-08-19 Thread Frank Louwers
Hi, Is there an easy way to implement rate limiting or tarpitting? Or can anyone give me some pointers on how to implement such a plugin? Vriendelijke groeten, Frank Louwers -- Openminds bvbawww.openminds.be Tweebruggenstraat 16 - 9000 Gent - Belgium