Displaying 20 results from an estimated 200 matches similar to: "deliver: select destination folder"
2006 Oct 28
2
BUG in RC10 deliver using mbox format
After recently adding the -f parameter to the call to the deliver command
which is called by Postfix, I found that e-mail with a null return path
(MAIL FROM:<>) was causing Dovecot deliver to SEGFAULT. I verified this
by making this patch to deliver.c (notice I fixed a typo here, too):
*** deliver.c.orig Fri Oct 13 07:32:28 2006
--- deliver.c Fri Oct 27 21:26:08 2006
***************
2005 Oct 04
3
Incoming traffic?
Hi there,
a program is downloading large files on a regular basis and has no switch
to limit bandwidth.
Is there a way to shape this incoming traffic? Any pointers?
My outgoing traffic shaping works perfectly, but this incoming thing gives
me a headache..
many thanks in advance!
Dominik
2000 Nov 15
2
Windows 2000 Passwords
Hello,
My question is the same as "Windows 98 Passwords" in your Samba FAQ
replacing Windows 98 with Windows 2000.
What is the registry to be modified to enable Plain Text Password with
Windows 2000 ?
I tried HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VxD\VNETSUP
as in Windows 98
and
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rdr\Parameters
as in NT4
but none work.
2018 Mar 07
0
Mail addresses with quotes + Postfix
Interesting, the documentation and the build-in help of dovecot-lda do
not mention -r exists :)
case 'r':
/* final recipient address */
if (smtp_address_parse_path(ctx.pool, optarg,
SMTP_ADDRESS_PARSE_FLAG_ALLOW_LOCALPART |
SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
&final_rcpt_to, &errstr) < 0) {
i_fatal_status(EX_USAGE,
"Invalid -a parameter: %s",
2005 Oct 24
3
choosing syslog facility?
Hello!
How can I log dovecots messages into a separate file?
Is it possible to set a custom syslog facility name somehow?
I can't set the log file in dovecot because dovecot does not automatically
rotate the logs like syslog does..
thank you!
Dominik
2008 Jul 10
2
A couple of dovecot issues I've noted recently...
Timo et al.,
I haven't been reading the list in a while, but wanted to report back
that we've transitioned to dovecot 1.0.15 and things look to be working
very nicely. The platform is Solaris "Nevada" running on x86. I
have been saving up a couple of issues to bring to your attention.
On our server, we gather all core files, and so we get a good taste of
the different things
2014 Oct 14
1
auth-worker goes wild
dovecot-2.2.13 running on Solaris-10, app 5000 concurrent connections,
and a pretty standard config where passdb is set up with driver = pam.
We have had some situations where an auth-worker gets into a loop, the load on
the server rises and the auth-master seems blocked untill finally no new imap nor
pop session are accepted. A 'doveadm reload' restores normal operations.
With debug
2010 Jun 07
0
[PATCH] extlinux: Add the --menu-save option to set the MENU SAVE value from the running system using extlinux
---
extlinux/main.c | 9 ++++++++-
libinstaller/syslxopt.c | 8 +++++++-
libinstaller/syslxopt.h | 1 +
man/extlinux.1 | 3 +++
4 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index 0669bb9..8a0ac63 100644
--- a/extlinux/main.c
+++ b/extlinux/main.c
@@ -381,6 +381,13 @@ int modify_adv(void)
rv = -1;
}
}
+
2014 Dec 24
0
[PATCH 1/8] extlinux/main.c: support unmounted ext2/3/4 filesystem
Add install_file_to_device() to support unmounted ext2, ext3 and ext4
filesystem.
Usage:
$ extlinux -i /dev/sdXN
or
$ extlinux -i file_block
We don't need any new options, it will check whether the target is a
directory or device and decide what to do, it would stop and error if
the device is mounted.
More info:
* It will use libext2fs to read and write the file.
* It will be used when the
2002 Oct 26
4
Older Mac to SAMBA copy
I've built a new samba server to replace an aging Apple 9500 running 8.6
that is acting as a 'file server'. The other macs run 9.2 and 10.2, which
are the computers that will be served (I HOPE!) by the samba server.
I have installed DAVE in order to be able to copy the files over to the new
server. However, as the files copy, they disappear on the samba
server. Someone said it
2014 Feb 07
1
Dovecot 2.2.10 crash / infinite loop bug
Hello,
I though this bug should be reported, although there is workaround
already made and in use.
Dovecot 2.2.10 crashes into out of memory error when there is defined
system users (userdb+passdb) and own virtual users (userdb+passdb).
Removing either one solves the issue and Dovecot is working as it
should. When memory leak (I replaced pw_init and gr_init with the
version that is found
2019 Feb 21
2
Weird things in the mail queue
I noticed a mail stuck in my mail queue. dovecot-lda was returning
error 64 Invalid parameter given. (EX_USAGE).
Weird, weird, weird. After some sleuthing, I found the sender address
was FirstLast at domain.tld, with a UTF8-encoded Unicode U+FEFF ZERO
WIDTH NO-BREAK SPACE character (AKA byte order mark) between "First"
and "Last" :)
Since that is passed as the -f parameter to
2005 Oct 17
1
qpoppers XUIDL
Hello,
does anybody know how to make XUIDLs compatible to qpopper?
I'm migrating from qpopper and one of my test-migration-accounts leaves
the mail on the server. As soon as I switch to dovecot it downloads the
mails again and again..
bye!
Dominik
2005 Mar 29
0
Checkin 1.37 of src/lib-storage/mail-storage.c
Checkin 1.37 of src/lib-storage/mail-storage.c added a parameter to
mailbox_open() but this broke building src/deliver/deliver.c as revision
1.2 doesn't use the new parameter.
It looks like save_mail() of src/deliver/deliver.c calls mailbox_open()
and it looks like it might work fine if it were to use a (struct istream
*)0 as the third parameter (instead of the flags) -- but I don't use
2005 Mar 29
0
Compile Error in current CVS
Had a small error with the current CVS version. It was in deliver.c.
Here's a fix. I'm assuming that adding NULL is correct ;-)
dovecot.2005-03-29/src # diff deliver/deliver.c.orig deliver/deliver.c
86c86
< box = mailbox_open(storage, mailbox, MAILBOX_OPEN_FAST |
---
> box = mailbox_open(storage, mailbox, NULL, MAILBOX_OPEN_FAST |
Here's the symptoms:
2019 Mar 24
1
Weird things in the mail queue
Hi Aki,
Am 21.02.19 um 12:55 schrieb Aki Tuomi:
>
> On 21.2.2019 13.47, Lionel Elie Mamane via dovecot wrote:
>> I noticed a mail stuck in my mail queue. dovecot-lda was returning
>> error 64 Invalid parameter given. (EX_USAGE).
>>
>> Weird, weird, weird. After some sleuthing, I found the sender address
>> was FirstLast at domain.tld, with a UTF8-encoded
2006 Jan 20
1
dovecot-lda and vpopmail
I'm setting up a new box with Dovecot 1.0 beta1 and vpopmail. Normal
operations works like a charm, i.e. vpopmail virtual can log in
sucessfully using TLS.
However, when trying to test dovecot-lda out of CVS, it is not locating
the user:
> *** Starting dovecot-imapd service...
> dovecot: Info: Dovecot v1.0.beta1 starting up
> dovecot: Info: auth(default): master in: USER 1
2019 Feb 21
0
Weird things in the mail queue
On 21.2.2019 13.47, Lionel Elie Mamane via dovecot wrote:
> I noticed a mail stuck in my mail queue. dovecot-lda was returning
> error 64 Invalid parameter given. (EX_USAGE).
>
> Weird, weird, weird. After some sleuthing, I found the sender address
> was FirstLast at domain.tld, with a UTF8-encoded Unicode U+FEFF ZERO
> WIDTH NO-BREAK SPACE character (AKA byte order mark) between
2014 Apr 24
0
Help implementing username_format in auth PAM driver
While configuring my server with dovecot I noticed that the PAM
authentication driver does not support the username_format option as
does the password file driver. This didn't seem too hard to implement
so I through together a patch.
As you can see in the attached patch I only modify the username sent
to PAM. Despit doing this I run into the domain lost
2014 Dec 12
0
PATCH - add username_format to the PAM auth module
Hi there,
Other auth modules (eg passwd-file) allow a username_format to be
specified, but not the PAM module.
The use-case, is where I want a static userdb configuration which takes the
domain into account but still want to use PAM for authentication, eg:
userdb {
driver = static
args = uid=8 gid=12 home=/mnt/storage/mail/vhosts/%d/%n
}
passdb {
driver = pam
args = username_format=%n