Re: smtpd / mail.lmtp rewrites from address, breaking lmtp

2019-09-16 Thread Michal Krzysztofowicz
/var/dovecot/lmtp %{user.username}" virtual match from any for domain !rcpt-to action “lmtp" Thanks! Mike -- Michal Krzysztofowicz http://beautifulocean.org/

Re: smtpd / mail.lmtp rewrites from address, breaking lmtp

2019-08-27 Thread Michal Krzysztofowicz
ow: #define IS_ATEXT(c) (isalnum((unsigned char)(c)) || strchr(MAILADDR_ALLOWED, (c))) then MAILADDR_ALLOWED is defined inside smtpd.h as: #define MAILADDR_ALLOWED"!#$%&'*/?^`{|}~+-=_” therefore it contains the ' character. Am I looking at the correct

Re: smtpd / mail.lmtp rewrites from address, breaking lmtp

2019-08-27 Thread Michal Krzysztofowicz
> On 10 Aug 2019, at 16:19, Gilles Chehade wrote: > > On Wed, Jun 26, 2019 at 10:56:50AM +0100, Michal Krzysztofowicz wrote: >> Hi All, >> > > Hi, Hi Gilles, > [...] > Sorry, it took a while to start looking at this. Thanks a lot for getting back on this

smtpd / mail.lmtp rewrites from address, breaking lmtp

2019-06-26 Thread Michal Krzysztofowicz
omething in the configuration, or is this something that needs to be fixed in smtpd? I’m running OpenBSD 6.5 patched to 005_libssl (so I guess it’s the -stable flavour), with stock OpenSMTPD distributed with OpenBSD 6.5. Thanks! Best Regards, mike PS. I’ve used this Wikipedia article to f

Re: Problem sending mail with Apple Mail

2018-04-10 Thread Michal Krzysztofowicz
5321, "RCPT TO:" seems to be a valid syntax but > for some reason Apple Mail is still getting a 550 reply. I *think* this may be just a behaviour of OpenSMTPD when authentication is required however the user didn’t attempt authentication before trying to send the mail. I

Re: Avoiding backscatter with spampd

2016-12-04 Thread Michal Krzysztofowicz
r that. Such an obvious thing when explained well, but for some reason it never crossed my mind to look at LMTP.. Thanks again! mike -- Michal Krzysztofowicz http://antarcti.co/ | http://beautifulocean.org/ -- You received this mail because you are subscribed to misc@opensmtpd.

Re: Filter withdrawals

2016-09-12 Thread Michal Krzysztofowicz
in front of public facing SSH server using the CBL maintained by SpamHaus - this list apparently includes IPs used as sources in multiple types of attacks. Again - I’m not sure how useful or stable their solution is, but it’s something I’d be willing to test. Best Regards, mike -- Michal Krzys

Re: Filter withdrawals

2016-09-11 Thread Michal Krzysztofowicz
s. I’m grateful for all the hard work you guys are doing with smtpd and certainly don’t want to hinder it in any way! Best Regards and sorry once again for causing you grief, it was totally unintended. mike -- Michal Krzysztofowicz http://antarcti.co/ | http://beautifulocean.org/ -- You received this mail because you are subscribed to misc@opensmtpd.org To unsubscribe, send a mail to: misc+unsubscr...@opensmtpd.org

Re: Filter withdrawals

2016-09-11 Thread Michal Krzysztofowicz
interface, and all seems to be working fine. Best Regards, mike -- Michal Krzysztofowicz http://antarcti.co/ | http://beautifulocean.org/ -- You received this mail because you are subscribed to misc@opensmtpd.org To unsubscribe, send a mail to: misc+unsubscr...@opensmtpd.org

Re: smtpd fatal error

2016-01-22 Thread Michal Krzysztofowicz
LRG], tmp[LINE_MAX_LRG]; va_start(ap, fmt); n = vsnprintf(buf, sizeof buf, fmt, ap); va_end(ap); - if (n == -1 || n >= LINE_MAX) + if (n == -1 || n >= LINE_MAX_LRG) fatalx("smtp_reply: line too long"); if (n < 4) fatalx(&quo