Displaying 20 results from an estimated 1000 matches similar to: "Running mailfront under dovecot2.x service supervision"
2011 Apr 27
3
What is the recommended way to move a message from one mailbox to another using CLI
What is the recommended way to move a message from one mailbox to another
using CLI - serverside commands ?
Since IMAP does not support transactional moves between mailboxes - The only
thing that comes to my mind is this operation:
1) extract message from mailbox A using "doveadm fetch"
2) inject message into mailbox B using "dovecot-lda"
3) expunge message from mailbox A
2011 Apr 21
2
What is the recommended way to delete a message from a mailbox ?
Hi,
I'm implementing a shell-script (pseudo) solution to the missing IMAP Outbox
feature in Dovecot (Courier IMAP feature
http://www.inter7.com/courierimap/INSTALL.html#imapsend)
In order to remove the message from the Outbox once it is sent I have a
question:
What is the recommended way to delete a message from a mailbox (from an
"external" server side program - such as a shell
2010 Nov 11
2
$MAIL environment variable to override mail_location works in v1.2.16 but not in v2.0.7 for /usr/libexec/dovecot/imap
Hi,
For the past day, I have been researching about making dovecot to
support mailfront (http://untroubled.org/mailfront/) imapfront-auth
natively and able to use mailfront imapfront-auth with dovecot imap
v1.2.16 without starting any dovecot related services and no
/etc/dovecot.conf file is required.
More information about this can be read at:
2011 Jan 19
1
courier-imap to dovecot-imap migration: missing TLS_TRUSTCERTS feature
Hi,
I'm attempting an one-to-one migration from courier-imap to dovecot-imap.
current state:
Imap-server has a self signed certificate
Every client/user has a self signed client certificate that is used for
SSL/TLS client authentication.
All certificates are self signed "standalone" cerfificates - no CA
hierarchy/structure is made.
With courier-imap we could just put every
2003 Feb 26
2
inetd/xinetd/tcpserver support
I was just thinking how they could be easily supported. This would work,
right? :
imap stream tcp nowait root /usr/sbin/tcpd /usr/local/libexec/dovecot/imap-login
imaps stream tcp nowait root /usr/sbin/tcpd /usr/local/libexec/dovecot/imap-login --ssl
imap-login would try to connect to master process using some named
socket. If it couldn't, it would create the master process itself.
Master
2007 Feb 28
1
relay-ctrl works
In case anyone still cares, relay-ctrl works with Dovecot. Dovecot's
end of the bargain requires a dirty little script to set TCPREMOTEIP
based on the arguments passed from imap-login:
#!/bin/sh
TCPREMOTEIP=`echo "$@" | sed -e 's|.* ||' -e 's|]$||'`
export TCPREMOTEIP
exec "$@"
And this (long) line in dovecot.conf:
mail_executable: envdir
2011 Mar 31
1
How to grant a kerberos ticket after successful imap authentication from dovecot
Hello everybody,
I hope this question is appropriate for this list. Apologies if not.
I am running a set of virtual machines under debian 6, to build a
mail/collaboration server. I am mainly using dovecot, postfix, openldap
and heimdal. Mails are stored using maildir, on a NFSv4 share.
My users are system users, but using LDAP and libpam-ldap and
libnss-ldap for caching credentials
2002 Nov 26
4
samba.
Hi.
I run SuSE 8.1 and samba here. On the linux machine I have a HP1100A on the
parallel port, and a HP-DJ895Cxi on a USB port.
I can print ok from this linux machine to both printers.
From my laptop, that runs WIN98, I can print to the HP1100A printer.
I cannot print to the DJ895Cxi, even if its set up as a network printer.
I could do this with SuSE dists up to 8.0.
From 8.1 printers are
2019 Sep 21
2
Dovecot proxying to some backend using LOGIN proxy_mech
Hello list,
I am currently testing a setup for a PoC wit this configuration.
- 1 x Frontend dovecot for proxying IMAP/POP3/LMTP/ManageSieve/Submission
- 2 x Backend dovecot with local mail storage
The frontend does the user authentification and communicate with the backends using a master password
The fronted accepts PLAIN and LOGIN auth mechanisms and talk with backends using PLAIN auth
2001 Oct 10
4
Weird feature when creating function lists with apply
Hi R-fellows,
can anyone explain this weird feature? I am trying to create a list of
functions with apply, and it appears that there is something strange going
on when the function evaluates the argument a. When I duplicate a into a
local variable b, the result changes !?!
Any pointers? Thank in advance. Cheers,
Uffe
# Create a function which returns a function
> f1 <- function(a)
2006 Feb 03
5
pbinom with size argument 0 (PR#8560)
Full_Name: Uffe H?gsbro Thygesen
Version: 2.2.0
OS: linux
Submission from: (NULL) (130.226.135.250)
Hello all.
pbinom(q=0,size=0,prob=0.5)
returns the value NaN. I had expected the result 1. In fact any value for q
seems to give an NaN. Note that
dbinom(x=0,size=0,prob=0.5)
returns the value 1.
Cheers,
Uffe
2010 Jun 27
1
Compile error sieve plugin for dovecot2
Hello,
I'm trying to compile the sieve plugin for dovecot2
Dovecot2-beta6 is allready running and working.
i did a hg clone http://hg.renamie-it.nl/dovecot-2.0-pigeonhole and ran the
autogen.sh script as mentioned in the INSTALL file
configure options:
/configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
--with-dovecot=/usr/lib/dovecot/ --with-managesieve=no
compiling gives an
2016 Jul 07
3
Compile error Dovecot2-pigeonhole
FreeBSD 9.3
Dovecot 2.25 (7be1766)
I'm trying to install Dovecot2-pigeonhole-0.4.14_2 from ports.
Get an error:
cc1: error: unrecognized command line option "-Wno-duplicate-decl-specifier"
With options MAKE_JOBS_UNSAFE=yes:
cc1: error: unrecognized command line option "-Wno-duplicate-decl-specifier"
*** [edit-mail.lo] Error code 1
Stop in
2000 Dec 14
2
Accuracy problem in dchisq for non-central chi-squared
Hi,
I think I have identified a inaccuracy in dchisq when the non-centrality
parameter is non-zero and large. Here's a little test:
sys.dchisq.test <- function(N = 100000,mean = 0)
{
z <- rnorm(N,mean = mean, sd = 1)
x <- z^2
xmin <- min(x)
xmax <- max(x)
br <- seq(xmin,xmax,length = 101)
dbr <- br[2]-br[1]
hist(x,br)
p <- dchisq(br,df = 1,ncp =
2013 Aug 21
0
dovecot2, antispam and sieve versions
I'm currently running dovecot2 v2.2.5 with dovecot2-antispam 0.0-51 and dovecot2-sieve 0.4.1, all via macports.
If one wanted to downgrade to dovecot v2.2.0, would these versions of antispam and sieve still be okay to use?
The reason for the question is I'm trying to diagnose a mailserver problem where after 2-6 days the machine goes deaf. Absolutely nothing of interest in any logfile
2014 Jan 31
2
Dovecot2 + Quota
Hello!
I need to configure Quota on Roundcubemail with Dovecot2.
So, I did:
90-quota.conf:
# SQL backend:
quota = dict:User quota::proxy::sqlquota
quota_rule = *:storage=20M:messages=1000
}
dict {
sqlquota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
}
OK, works! but, My webmail shows me 20M of quota. But on my Postfixadmin I
configured 200M.
How can I fix this?
Att;
*Lucas
2010 Jun 22
1
imap acl write tb3 plugin dovecot2 vs XMAILBOXINFO
Hi Timo,
i played a little bit with
an experimental tb3 imap acl write extension
https://addons.mozilla.org/de/thunderbird/addon/176736/
with dovecot2
got errors like
XMAILBOXINFO: Unknown command
any idea?
--
Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
2011 May 09
1
Post-login scripting with mail_drop_priv_before_exec in dovecot2
Hi,
I'm in the process of upgrading from dovecot v1.1 to dovecot 2. We fetch
uid/gid user information from a database and also use post-login
scripting with mail_drop_priv_before_exec = yes which means the
postlogin script is executed with the permissions of the user we have
found in the database.
According to the dovecot2 wiki page, to get this behaviour in version 2
we have to set the
2010 May 31
1
master users with dovecot2 braek down to allowed domain
Hi,
i think ive asked it before
perhaps this feature can be included in dovecot2
couldnt get it run with dovecot 1.2.x
if i use the postfixadmin superuser,domainadmin,domainuser layout
so there are domainadmins defined in a sql table
it would be a nice feature to break it down to be master only at there
related domains via sql lookup
at recent i think there is only the chance to give master
2012 Feb 10
1
folder hierarchies with migration from cyrus to dovecot2
Hi,
I finally migrated my IMAP server from cyrus to dovecot2. I have been
using cyrus since many years and have not much experience with dovecot
yet though.
I've converted my imap server using cyrus2dovecot (several times until
I thought it was correct) but there is one thing left which confuses
me and I'm not sure what I can or need to do to change it.
With Cyrus I used