Displaying 20 results from an estimated 400 matches similar to: "[PATCH] Make Delivered-To optional"
2017 Aug 26
3
[PATCH] Add support for lower TLS version than default
The openssl library in Debian unstable (targeting Buster) supports
TLS1.2 by default. The library itself supports also TLS1.1 and TLS1.0.
If the admin decides to also support TLS1.[01] users he can then enable
the lower protocol version in case the users can't update their system.
Signed-off-by: Sebastian Andrzej Siewior <sebastian at breakpoint.cc>
---
src/config/all-settings.c
2005 Jul 20
3
Another minor IMAP LIST issue
I've just noticed that Dovecot 1.0-stable and 1.0-test78 don't include
mbox folders with names beginning with "." in the IMAP LIST output.
These are often used to store "hidden" folders for storing things like
IMAP client configuration (e.g. Pine 4.x, IMHO, Prayer). Usually the
user shouldn't be able to see these, but there are occassions when they
might. It seems
2007 Jul 25
2
Allowing tilde at start of mailbox names
In lib-storage/index/maildir/maildir-storage.c
maildir_is_valid_create_name() and maildir_is_valid_existing_name() the
following sequence of tests appear but I don't really understand why
if ((storage->flags & MAIL_STORAGE_FLAG_FULL_FS_ACCESS) != 0)
return TRUE;
if (*name == '~' || strchr(name, '/') != NULL)
return FALSE;
If MAIL_STORAGE_FLAG_FULL_FS_ACCESS is
2015 Jan 14
0
HG e3640ccaa76d crashes upon IMAP SEARCH
On 12 Jan 2015, at 04:15, Thomas Leuxner <tlx at leuxner.net> wrote:
> $ doveconf -n | head
> # 2.2.15 (e3640ccaa76d): /etc/dovecot/dovecot.conf
> b search charset utf-8 body "Sleeve"
> imap(tlx at leuxner.net): Panic: file message-decoder.c: line 346 (message_decode_body): assertion failed: (ctx->translation_size <= sizeof(ctx->translation_buf))
Hopefully
2015 Jan 12
2
HG e3640ccaa76d crashes upon IMAP SEARCH
$ doveconf -n | head
# 2.2.15 (e3640ccaa76d): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.4.6
# OS: Linux 3.16.0-0.bpo.4-amd64 x86_64 Debian 7.8
$ /usr/lib/dovecot/imap -u tlx at leuxner.net
* PREAUTH [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS THREAD=ORDEREDSUBJECT MULTIAPPEND URL-PARTIAL CATENATE UNSELECT CHILDREN
2018 Mar 04
0
LMTP delivery segfaults when user is over quota.
On 04.03.2018 16:25, Reio Remma wrote:
> Hello!
>
> I'm having crashes with LMTP delivery when user is over quota on the
> latest CentOS 7.4 with the latest Dovecot 2.3.0.1 from Dovecot repo.
>
> I see the issue has been fixed on January 17, but it doesn't seem to
> have made it into 2.3.0.1 (I compared with the source from
>
2006 Jul 26
0
[PATCH] [HVM] enable sound card support for qemu
[HVM] enable sound card support for qemu
Signed-off-by: Edwin Zhai <edwin.zhai@intel.com>
diff -r 2abb1c801ab7 tools/examples/xmexample.hvm
--- a/tools/examples/xmexample.hvm Wed Jul 19 16:09:59 2006 +0800
+++ b/tools/examples/xmexample.hvm Thu Jul 20 21:19:07 2006 +0800
@@ -153,8 +153,8 @@ serial=''pty''
2019 Nov 28
2
sendmail -> lmtp 501 5.6.0 Data format error
When changing in a working setup sendmail.mc
From this
MAILER(smtp)dnl
MAILER(procmail)dnl
To this
FEATURE(`local_lmtp',`[IPC]',`FILE /var/run/dovecot/lmtp')dnl
MAILER(local)dnl
I am getting these errors '501 5.6.0 Data format error' and '
Unrecognized host name'.
What should I change in my lmtp config? Could this be related that
messages are being relayed from
2008 Oct 15
1
Bug: MODSEQ FETCH return (?)
Hi Timo - hope things are well :) Playing around with the CONDSTORE
(RFC 4551) stuff while testing the IMAP lib I am writing and I think I
have found a bug in Dovecot 1.2.
RFC 4551 [4] identifies the FETCH response to a MODSEQ request as follows:
fetch-mod-resp = "MODSEQ" SP "(" permsg-modsequence ")"
with 'permsg-modsequence' defined as:
2014 Aug 05
1
[Patch] mail_log plugin supports remote, local ip addresses
Hello,
In attached file you will find patch for mail_log plugin to output
local, remote ip addresses. It may be usefull for somebody.
To enable support for dovecot 2.2.x versions change the line 'include
"net.h"' instead of 'include "network.h"'.
Thank you.
P.S. Sorry, for previous empty message.
--
With Best Regards,
Vitaliy T.
-------------- next part
2003 Sep 10
1
Patch for auto-creating home directories
I've created a patch that adds a feature that is helpful to my setup. If
'parent_dir_umask' is set in the configuration file, any missing
directories in the home directory path are created.
The home directory itself is created according to the 'umask' setting,
'parent_dir_umask' is only used for intermediate directories that might
need creating.
This is useful to me,
2012 Oct 02
2
[PATCH] Add SCRAM-SHA-1 password scheme
Hello,
attached is an hg export on top of the current dovecot-2.2 branch, which
adds support for a SCRAM-SHA-1 password scheme.
Ideally I'd want doveadm pw's rounds flag to apply to this, but that's
currently specific to the crypt password scheme, so I left it out for now.
Regards,
Florian Zeitz
-------------- next part --------------
# HG changeset patch
# User Florian Zeitz
2019 Oct 07
0
Sieve redirect is broken in 2.3.7.2 - signal 11
On 07/10/2019 10:17, Demonhost via dovecot wrote:
> Hi Stephan,
>
> Here it is:
>
We still can't reproduce it here.
First of all, did you update Pigeonhole along with Dovecot? This kind of
weirdness can happen when Pigeonhole was compiled against a different
version of Dovecot. You could compile Pigeonhole manually as well to
make sure, which also gives you the opportunity to
2013 Sep 20
3
[PATCH] preload_app can take an optional block for warmup
---
lib/unicorn/configurator.rb | 19 ++++++++++++++++---
lib/unicorn/http_server.rb | 3 +++
test/unit/test_configurator.rb | 8 ++++++++
3 files changed, 27 insertions(+), 3 deletions(-)
diff --git a/lib/unicorn/configurator.rb b/lib/unicorn/configurator.rb
index 0d0eac7..a0ae576 100644
--- a/lib/unicorn/configurator.rb
+++ b/lib/unicorn/configurator.rb
@@ -441,9 +441,22 @@ class
2019 Apr 30
1
regression with lmtp_hdr_delivery_address in 2.3
Hi,
In my LMTP config, I have
lmtp_hdr_delivery_address = none.
Under 2.2, Received headers looked like this:
Received: from smtp.example.com
by lmtp.example.com with LMTP id +IVdKS81cFwWagAAGhmRSA
; Fri, 22 Feb 2019 17:45:19 +0000
After the update to 2.3, they look like this:
Received: from smtp.example.com
by lmtp.example.com with LMTP
id MJbKAMFEclyKCQAAGhmRSA
2019 Nov 28
0
sendmail -> lmtp 501 5.6.0 Data format error
Eg. When I send email from gmail it looks like this
(reason: 553 5.1.2 <xxxx at gmail.com>... Unrecognized host name
gmail.com.)
-----Original Message-----
To: dovecot
Subject: sendmail -> lmtp 501 5.6.0 Data format error
When changing in a working setup sendmail.mc
From this
MAILER(smtp)dnl
MAILER(procmail)dnl
To this
FEATURE(`local_lmtp',`[IPC]',`FILE
2015 Jul 16
3
[Patch] Fix hang in safe_sendfile on SmartOS
# HG changeset patch
# User Sebastian Wiedenroth <sebastian.wiedenroth at skylime.net>
# Date 1437050484 -7200
# Thu Jul 16 14:41:24 2015 +0200
# Node ID 7ef3a533b097e8e6590e754dc56ad308ab29233b
# Parent e3640ccaa76d77a9658126d1f8f306480dad8af7
Fix hang in safe_sendfile on SmartOS
The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
code and documented in
2003 Apr 15
1
PATCH allow_zero_gid option
Hey,
Well, that was easy :-) Patch against CVS follows:
Summary:
Created a boolean option allow_zero_gid, when set to yes it will allow
logins from users whose group id is zero. Tested with KMail 3.1.1 on
FreeBSD 4.8. I'm not sure if my method for passing the boolean via the
environment is correct, it looks a little on the ugly side.
Index: src/lib/restrict-access.c
2015 Oct 06
4
More information about - Dovecot 2.2.x quota mysql and dict
I some add information about bug...
Dovecot 2.2.19 version on server FreeBSD 10.2 Release.
Config quota (dict + mysql)
Database create Postfixadmin 2.3.7
Old version Dovecot 2.2.13 use method UPDATE in MySQL base + dict
example mysql.log
-----------------
Connect postfix at localhost on postfix
134 Query SELECT bytes FROM quota2 WHERE username =
'user at mydomain.lan'
2018 Mar 06
0
Coredump: Panic: file smtp-address.c: line 530 (smtp_address_write): assertion failed: (smtp_char_is_qpair(*p))
Op 3/5/2018 om 3:14 PM schreef Ralf Hildebrandt:
> Got a coredump:
>
> Mar 5 15:09:42 mail-cbf dovecot: lmtp(backup at backup.invalid)<15425><2B+kCaZPnVpBPAAAplP5LA>: Fatal: master: service(lmtp): child 15425 killed with signal 6 (core dumped)
Hmm, yes, I think this an unnecessary RFC5322 -> RFC5321 address
translation. Will look at making a fix tomorrow.
Regards,