Re: lazy-load SNI?

2016-11-10 Thread Aki Tuomi
On 11.11.2016 01:02, Felipe Gasper wrote: Hello, We’re rolling out large SNI deployments for our mail servers. Each domain gets an entry like this in the config: local_name mail.foo.com { ssl_cert = Unfortunately it's not possible now, it has been asked before though. We have

Re: post-delivery virus scan

2016-11-10 Thread Dmitry Melekhov
10.11.2016 16:47, Frank Elsner пишет: On Wed, 9 Nov 2016 15:36:33 -0600 Brad Koehn wrote: [ ... ] To help detect and remove the infected messages after they’ve been delivered to users’ mailboxes, I created a small script that iterates the INBOX and Junk mailbox directories, scans recent m

Re: How does one mark all messages as read (imap4flag "seen") with sieve?

2016-11-10 Thread Ben Johnson
On 11/10/2016 3:46 AM, Bill Shirley wrote: > I don't use the Anti-Spam plugin; I just fire off a BASH script every > four hours with > crontab which iterates thru the vmail email accounts and trains > Spamassassin 'per-user' > accounts. If the script sounds interesting I can post it here. It > pr

Re: How does one mark all messages as read (imap4flag "seen") with sieve?

2016-11-10 Thread Ben Johnson
On 11/10/2016 2:02 AM, Aki Tuomi wrote: > Hi! > > Can you provide bt full from gbd? > > Install debug symbols and acquire core file > > Run gdb /path/to/bin /path/to/core > > Issue bt ful > > Send it to list. > > > Aki Tuomi > > Dovecot oy > > > > On November 10, 2016 at 2:42 AM Lar

lazy-load SNI?

2016-11-10 Thread Felipe Gasper
Hello, We’re rolling out large SNI deployments for our mail servers. Each domain gets an entry like this in the config: local_name mail.foo.com { ssl_cert =

Re: service doveadm : ssl problems

2016-11-10 Thread nerbrume
- Mail original - > De: "Tobi" > À: dovecot@dovecot.org > Envoyé: Jeudi 10 Novembre 2016 16:35:56 > Objet: Re: service doveadm : ssl problems > > Have you specified the path to ca-certificates? > On Debian it's normally something like that > > #10-ssl.conf > ssl_client_ca_dir = /etc/ssl/

Enterprise Edition: Any known access issues with the repo? Have existing accounts been expired?

2016-11-10 Thread deoren
Hi, I'm getting errors when attempting to run apt-get update on an Ubuntu 14.04 box where I've had an existing EE installation for some time: > W: Failed to fetch https://apt.dovecot.fi/stable-2.2/ubuntu/trusty/dists/trusty/main/binary-amd64/Packages HttpError401 > > W: Failed to fetch ht

Re: post-delivery virus scan

2016-11-10 Thread Stephan Bosch
Op 10-11-2016 om 12:25 schreef Brad Koehn: On Nov 10, 2016, at 3:38 AM, Stephan Bosch wrote: Op 11/10/2016 om 10:05 AM schreef Teemu Huovila: On 09.11.2016 23:36, Brad Koehn wrote: I’m wondering if there’s a better way to scan recent messages and eradicate them so the Dovecot isn’t upset w

Re: service doveadm : ssl problems

2016-11-10 Thread Tobi
Have you specified the path to ca-certificates? On Debian it's normally something like that #10-ssl.conf ssl_client_ca_dir = /etc/ssl/certs see http://wiki.dovecot.org/Replication#SSL Am 10.11.2016 um 16:09 schrieb nerbr...@free.fr: > Hello, > > I'm using dovecot 2.2.13 on Debian stable. > My

exim problem with Redirect the emails from domain2 to domain1

2016-11-10 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 7 Nov 2016, Quaquaraquà wrote: I have a VPS using these two applications. I am transitioning from a domain_old to a domain_new. I'd like to redirect all the emails from domain_old to the local mailboxes of users @ domain_new. In exim I'v

service doveadm : ssl problems

2016-11-10 Thread nerbrume
Hello, I'm using dovecot 2.2.13 on Debian stable. My users are authenticated through PAM, and stored in an LDAP backend I'm trying to set-up replication with ssl, following (mainly) this : http://wiki2.dovecot.org/Replication 1) I only diverted from the instructed setup by not setting "doveadm_p

Dovecot & AD (was: Dovecot 2 LDAP "unknown user")

2016-11-10 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, 5 Nov 2016, Peter Fraser wrote: 1. I need to make sure the user logon name in AD and the samAccountname are exactly the same, case and all. It seems postfix uses the samAccountname and Dovecot the User logon name. 2. I also noticed tha

Re: question concerning junk folder

2016-11-10 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 9 Nov 2016, Rajesh M wrote: using centos 6.5, qmailtoaster, dovecot, spamassassin. i found that junk folder is specified under /etc/dovecot/conf.d/15-mailboxes.conf the issue is that this folder is getting created automatically and genuin

Re: search body with wildcards

2016-11-10 Thread W. de Hoog
When searching: doveadm search mailbox shared/* BODY calib* solr is queried with ...body:calib%5c*... so the wildcard is escaped. Is there any way to disable this escaping? I removed '*' and '?' from solr_escape_chars in src/plugins/fts-solr/fts-backend-solr.c to allow to use them as wil

Re: post-delivery virus scan

2016-11-10 Thread Brad Koehn
Turns out the technical part of your reasoning is correct: MUAs that have downloaded the message don’t get any updates, and hold onto the infected message. No legal ramifications here; it’s my personal server, and it’s in the US. Strange to think that deleting the content of a message would some

Re: post-delivery virus scan

2016-11-10 Thread Frank Elsner
On Wed, 9 Nov 2016 15:36:33 -0600 Brad Koehn wrote: [ ... ] > To help detect and remove the infected messages after they’ve been delivered > to users’ mailboxes, I created a small script that iterates the INBOX and > Junk mailbox directories, scans recent messages for viruses, and deletes the

Re: post-delivery virus scan

2016-11-10 Thread Brad Koehn
I’ve decided to try this approach. I’ve updated my script as follows: #!/bin/bash # Scan junk folders for messages containing viruses we didn't have definitions # for when the mail was received. Truncate the body of infected messages and # replace the body with a message. cd /var/mail for dir

Re: post-delivery virus scan

2016-11-10 Thread Brad Koehn
> On Nov 10, 2016, at 3:38 AM, Stephan Bosch wrote: > > Op 11/10/2016 om 10:05 AM schreef Teemu Huovila: >> >> On 09.11.2016 23:36, Brad Koehn wrote: >>> I have discovered that many times the virus definitions I use for scanning >>> messages (ClamAV, with the unofficial signatures >>> http://

Re: post-delivery virus scan

2016-11-10 Thread Stephan Bosch
Op 11/10/2016 om 10:05 AM schreef Teemu Huovila: > > On 09.11.2016 23:36, Brad Koehn wrote: >> I have discovered that many times the virus definitions I use for scanning >> messages (ClamAV, with the unofficial signatures >> http://sanesecurity.com/usage/linux-scripts/) are updated some time afte

Re: post-delivery virus scan

2016-11-10 Thread Teemu Huovila
On 09.11.2016 23:36, Brad Koehn wrote: > I have discovered that many times the virus definitions I use for scanning > messages (ClamAV, with the unofficial signatures > http://sanesecurity.com/usage/linux-scripts/) are updated some time after my > server has received an infected email. It seem

Re: search body with wildcards

2016-11-10 Thread W. de Hoog
On 2016-11-09 09:52, W. de Hoog wrote: Hi, A question. We are using fts_solr. When searching for content in BODY I noticed that dovecot only supports full words. "BODY calibration" returns results but "BODY calibra" does not. Nor "BODY calibra*". Solr does support searching with wildcards so wh

tons of dovecot/config processes

2016-11-10 Thread Arkadiusz Miśkiewicz
Hi. I've noticed that dovecot (using 2.2.26.0 here) starts dovecot/config processes that stay for long time. Example: [root@ixion-pld ~]# service dovecot restart Stopping Dovecot service.

Re: How does one mark all messages as read (imap4flag "seen") with sieve?

2016-11-10 Thread Bill Shirley
I don't use the Anti-Spam plugin; I just fire off a BASH script every four hours with crontab which iterates thru the vmail email accounts and trains Spamassassin 'per-user' accounts. If the script sounds interesting I can post it here. It probably could use a little polish though. Bill On