search for: localpart

Displaying 20 results from an estimated 111 matches for "localpart".

Did you mean: local_part
2020 Oct 21
1
Corrupted dbox file + assertion failure
Hi all, a dsync failed due a corrupted mdbox file. Force-resync throws the same error. (Dovecot 2.3.9.2) Is there any change to fix/repair the file? dsync-local(LOCALPART at DOMAIN.TLD)<MBF5EUC8j1/FfQAAkqONGQ>: Warning: fscking index file /var/mail/12/DOMAIN.TLD/242/LOCALPART/mdbox/storage/dovecot.map.index dsync-local(LOCALPART at DOMAIN.TLD)<MBF5EUC8j1/FfQAAkqONGQ>: Warning: mdbox /var/mail/12/DOMAIN.TLD/242/LOCALPART/mdbox/storage: rebuilding indexes...
2015 Apr 07
2
Sieve, multiple addresses, and variables
...each mailing list independently. So wrote this (this is just a part, obviously): require ["envelope", "variables", "date", "fileinto", "mailbox" ]; if address :is :domain "to" "ietf.org" { if address :matches :localpart "to" "*" {set "lopart" "${1}";} } elsif address :is :domain "cc" "ietf.org" { if address :matches :localpart "cc" "*" {set "lopart" "${1}";} } e...
2019 Feb 11
2
smtp_address_cmp does not ignore case of localpart
Hi, in src/lib-smtp/smtp-address.c line 759 the localpart is compared with null_strcmp, which does not ignore the case. While this is the correct behavior (according to the RFC) it causes problems in real life. In my case the vacation notices are not sent, if someone writes to First.Last at ruhr-uni-bochum.de because :addresses contains (only) first.l...
2014 Oct 22
1
Dovecot Master/Master Replication Problem
Hi, I've set up 2 servers with dovecot 2.2.9 using maildir using structure: /var/maildir/domain/localpart Server A: mx1.xxx.de Server B: mx2.xxx.de Mails are delivered to dovecot only on server A by exim4/dovecot deliver replication to Server B works immediatelly: mark mail as read on server A, mail is marked as read on server B. BUT: when i mark a mail as read on Server B, noting happens. On...
2018 Jan 31
2
lda: Warning: Failed to parse return-path header: Invalid character in localpart
Hello, Sometimes, when delivering mails, this warning appears in my syslog: > lda(...): Warning: Failed to parse return-path header: Invalid character in localpart dovecot-lda still exits with 0 and the mail is inserted into my inbox. Looking at the mails in question, I determined that the error is caused by a multiline Return-Path header. Here's a testcase: --- snip --- Return-Path: <nowhere at example.com> From: "Nowhere" <now...
2018 Jan 31
2
lda: Warning: Failed to parse return-path header: Invalid character in localpart
...2018 22:35, Stephan Bosch wrote: > Op 1/31/2018 om 6:17 PM schreef Christian Authmann: >> Hello, >> >> Sometimes, when delivering mails, this warning appears in my syslog: >> >>> lda(...): Warning: Failed to parse return-path header: Invalid >> character in localpart >> >> dovecot-lda still exits with 0 and the mail is inserted into my inbox. >> >> >> Looking at the mails in question, I determined that the error is >> caused by a multiline Return-Path header. Here's a testcase: >> >> --- snip --- >> Retu...
2015 Apr 08
0
Sieve, multiple addresses, and variables
...tly. > > So wrote this (this is just a part, obviously): > > require ["envelope", "variables", "date", "fileinto", "mailbox" ]; > if address :is :domain "to" "ietf.org" { > if address :matches :localpart "to" "*" {set "lopart" "${1}";} > } > elsif address :is :domain "cc" "ietf.org" { > if address :matches :localpart "cc" "*" {set "lopart" "${1}";} >...
2018 Jan 31
0
lda: Warning: Failed to parse return-path header: Invalid character in localpart
Op 1/31/2018 om 6:17 PM schreef Christian Authmann: > Hello, > > Sometimes, when delivering mails, this warning appears in my syslog: > > > lda(...): Warning: Failed to parse return-path header: Invalid > character in localpart > > dovecot-lda still exits with 0 and the mail is inserted into my inbox. > > > Looking at the mails in question, I determined that the error is > caused by a multiline Return-Path header. Here's a testcase: > > --- snip --- > Return-Path: > ? <nowhere at examp...
2018 Jan 31
0
lda: Warning: Failed to parse return-path header: Invalid character in localpart
...ote: >> Op 1/31/2018 om 6:17 PM schreef Christian Authmann: >>> Hello, >>> >>> Sometimes, when delivering mails, this warning appears in my syslog: >>> >>>> lda(...): Warning: Failed to parse return-path header: Invalid >>> character in localpart >>> >>> dovecot-lda still exits with 0 and the mail is inserted into my inbox. >>> >>> >>> Looking at the mails in question, I determined that the error is >>> caused by a multiline Return-Path header. Here's a testcase: >>> >&gt...
2019 Jan 25
2
Bug with latest GCC 9
Hi. As mentioned here: https://bugzilla.opensuse.org/show_bug.cgi?id=1123136 there's a new issue with GCC 9, it's related to: https://gcc.gnu.org/gcc-9/porting_to.html#complit in: /* Not const! Never return this as a result directly! */ #define SMTP_ADDRESS_LITERAL(localpart, domain) \ &((struct smtp_address){ (localpart), (domain) }) Thanks, Martin
2019 Feb 12
0
smtp_address_cmp does not ignore case of localpart
On 11/02/2019 22:43, Andreas Jobs via dovecot wrote: > Hi, > > in src/lib-smtp/smtp-address.c line 759 the localpart is compared with > null_strcmp, which does not ignore the case. While this is the correct > behavior (according to the RFC) it causes problems in real life. > > In my case the vacation notices are not sent, if someone writes to > First.Last at ruhr-uni-bochum.de because :addresses co...
2019 Feb 12
1
smtp_address_cmp does not ignore case of localpart
On Tue, Feb 12, 2019 at 08:12:43AM +0100, John Fawcett via dovecot wrote: >On 11/02/2019 22:43, Andreas Jobs via dovecot wrote: >In practice if you convert the username part to lower case in the MTA >then you will accept mail with mixed case but only have to deal with >lowercase in Dovecot. Yes, but the vacation action (also) compares :addresses against the header to|cc|sender... And
2019 Apr 25
2
Bug with latest GCC 9
...la.opensuse.org/show_bug.cgi?id=1123136 >> >> there's a new issue with GCC 9, it's related to: >> https://gcc.gnu.org/gcc-9/porting_to.html#complit >> >> in: >> /* Not const! Never return this as a result directly! */ >> #define SMTP_ADDRESS_LITERAL(localpart, domain) \ >> ????&((struct smtp_address){ (localpart), (domain) }) > > Thanks for reporting this. We are working on it (tracking internally as DOP-890). > > Regards, > > Stephan. Hi. Thanks for working on that. Is there any update please? Martin
2015 Dec 22
0
FWD: Syslinux post from localpart@domain.tld requires approval
...ct, http://dpdk.org/ DPDK is a set of libraries and drivers for fast packet processing. Packets being network packets. That posting is not spam, but it should not go to this mailinglist. Thing I'm telling is that there is at least one person ( me :-) who does act upon 'Syslinux post from localpart at domain.tld requires approval' messages. Sometimes I think I should handover that/this job. Mostly I think "it is not much effort, just continue". Now I found a good opportunity to tell about it, hence this message. Regards Geert Stappers -- Live and let live ----- Forwarded me...
2016 May 01
2
Changing Password Schemes
...;; my $dbuser = 'dbuser'; my $dbpass = 'password'; my $dbh = DBI->connect("DBI:$dbtype:host=$dbhost;database=$dbname", $dbuser, $dbpass) or die "Could not connect to database: " . $DBI::errstr . "\n"; my $selectsth = $dbh->prepare('SELECT localpart, domain, plain_pass FROM mailuser where crypt_pass IS NULL OR crypt_pass=""'); my $updatesth = $dbh->prepare('UPDATE mailuser SET crypt_pass=? where localpart=? and domain=?'); $selectsth->execute; while (my $row = $selectsth->fetchrow_hashref) { open my $urand, &...
2010 Mar 06
5
Quota plugin and SQL
I have read through http://wiki.dovecot.org/Quota/Dict, which suggests a database schema for using quota. For 1.2, this includes a username, bytes and messages. Is there any way to modify the queries used to split out username into localpart and domain? This would enable me to put the current quota information in my main mailbox table and display it to users in my admin interface. Or possibly it should be in a separate table for a reason, and I should be look there for the values? Thanks, David
2019 Jun 14
2
Dovecot LMTP rejecting mail from address with apostrophe
...42606]: 21749fd12ac76b57 mda delivery evpid=56aed6237d6444a0 from=<firstname.o'lastname at example.com> to=<me at example.org> rcpt=<me at example.org> user=me delay=0s result=PermFail stat=Error ("mail.lmtp: LMTP server error: 501 5.5.4 Invalid FROM: Invalid character in localpart") where example.com is external domain and example.org is a local one. The part of the message: LMTP server error: 501 5.5.4 Invalid FROM: Invalid character in localpart is returned by dovecot-lmtp. I?ve had a brief look at the source code, and it seems the responsible code is somewhere ins...
2019 Nov 16
2
Sieve and recipient_delimiter
I use recipient_delimiter addresseses quiet a bit, and I want to put several of them into a mailbox if anyof (header :contains ["to"] [ ?FOO", ?foo", ?bar", ?florin"]) { fileinto :create ?later"; stop; } When I get an email addressed to me+FOO at example.com or me_florin at example.com, the messages end up in my inbox (Yes, I have both + and _
2015 Jan 04
0
dmarc_moderaction_action
...ery Subsystem <MAILER-DAEMON at zytor.com> To: syslinux-bounces at zytor.com Subject: Returned mail: see transcript for details The original message was received at Sun, 4 Jan 2015 06:31:24 -0800 from localhost [IPv6:::1] ----- The following addresses had permanent fatal errors ----- <localpart at hotmail.com> (reason: 550 5.7.0 (COL004-MC4F39) Unfortunately, messages from (198.137.202.10) on behalf of (yahoo.com) could not be delivered due to domain owner policy restrictions.) <localpart at hotmail.com> (reason: 550 5.7.0 (COL004-MC4F39) Unfortunately, messages from (198...
2015 Jan 04
3
dmarc_moderaction_action
( previous thread at http://www.syslinux.org/archives/2015-January/023050.html ) > > <info from="web interface mailman" extra_from="backend mailinglist software"> > dmarc_moderation_action Option > dmarc_moderation_action (privacy): Action to take when anyone posts > to the list from a domain with a DMARC Reject/Quarantine Policy. > >