[pfx] Exact enhanced status codes in SMTP responses

2024-10-21 Thread Rob Foehl via Postfix-users
There's a particularly obnoxious ESP that won't take no for an answer, repeatedly retrying delivery attempts despite 5xx responses -- unless "no" is spelled exactly "550 5.1.1 ...", apparently. Cute. I'll just throw that into an access map, and... nope, they get 550 5.0.0, as noted in access(5).

Re: Suggestion for docs

2011-06-21 Thread Rob Foehl
On Tue, 21 Jun 2011, Rich Wales wrote: printf '\000user\000pass' | openssl base64 This appears to work OK in tcsh and sh on Linux (Ubuntu Maverick). It also works if I write "\0" instead of "\000". Careful, that won't do the right thing if either string starts with a valid octal digit. Eit

Re: Need a little help with header_checks expression, matching literal $

2011-03-25 Thread Rob Foehl
On Fri, 25 Mar 2011, Stan Hoeppner wrote: /Subject:.*won.*\$\d.*/ REJECT Probable phish /Subject:.*won \$\d.*/REJECT Probable phish What the heck am I missing WRT making $ literal? Likely that it must be quoted/escaped correctly in the shell: $ cat won_money /^Subject:.

Re: DNS Whitelisting

2010-08-25 Thread Rob Foehl
On Wed, 25 Aug 2010, Noel Jones wrote: The user interface would be familiar to anyone using rbl checks. Sample documentation under the appropriate smtpd_mumble_restrictions section: - permit_dnswl_client dnswl_domain=d.d.d.d Accept the request when the reversed client IP network address is l

Re: SQLite support in Postfix

2010-06-18 Thread Rob Foehl
On Fri, 18 Jun 2010, Victor Duchovni wrote: Indeed. One still needs tools to insert data into the database. Does Postfix need to provide a minimal interface for this, or do we assume that SQLite users will have adequate tools outside Postfix. It wouldn't hurt to omit this support for the time

RE: Problem starting Postfix: mysql_alias.cf, line 1: missing '='

2009-09-15 Thread Rob Foehl
On Tue, 15 Sep 2009, Jose Carlos Madrid wrote: you were right. I edited the file in Windows. I didn't realize. But after save it with vi editor It still keeps giving me this error. Notice it is not (line 1: missing '=' after attribute name: "??u") anymore but similar. Please don't top post.

Re: Problem starting Postfix: mysql_alias.cf, line 1: missing '='

2009-09-15 Thread Rob Foehl
On Tue, 15 Sep 2009, Jose Carlos Madrid wrote: Sep 14 11:25:30 hostname postfix/cleanup[30095]: fatal: /etc/postfix/mysql_alias.cf, line 1: missing '=' after attribute name: "??h" It appears you have saved mysql_alias.cf in a UTF-16 encoding. Don't do that; Postfix configuration files are p

Re: postscreen test

2009-07-16 Thread Rob Foehl
On Thu, 16 Jul 2009, Wietse Venema wrote: Victor Duchovni: The service is an SMTP "bouncer", keeping unwanted clients from entering the premises. We already have a "bounce unix" service, will having: smtp inet n - n - 1 bouncer ... bounceunix

Re: multi instance support bug (env not found)

2009-06-05 Thread Rob Foehl
On Fri, 5 Jun 2009, Wietse Venema wrote: Victor Duchovni: On Fri, Jun 05, 2009 at 10:05:16AM -0400, Wietse Venema wrote: Ralf Hildebrandt: /usr/libexec/postfix/postfix-script: 346: /bin/env: not found Replace "/bin/env find" by "`which find`. Perhaps /usr/bin/env, will be more portable?