Questions tagged [dovecot]

QUESTIONS ABOUT POSTFIX ADMINISTRATION ARE OFF-TOPIC. Dovecot is an IMAP and POP3 server for Linux

Dovecot is an open-source IMAP and POP3 server for Linux originally developed by Timo Sirainen in 2002.

Please note that https://serverfault.com/ is another Stack Exchange website where you can ask especially configuration specific problems.

Useful links

343 questions
0
votes
1 answer

Postfix/dovecot; How to avoid the in the subheader of Outlook 2013?

Recently, with the help of some tutorials, I successfully set-up my own mailserver on my Pi 2 using postfix and dovecot. Everything works well, however, when I receive e-mail in Outlook 2013 I always see "" in the preview of the message below…
Flight777
  • 25
  • 1
  • 6
0
votes
1 answer

PHP Encrypt like SQL for Dovecot

I'm running Dovecot + Postfix on my server, and I want PHP to generate e-mail accounts. It all works, except the password. They are using a MySQL-function, but I cannot use it because I use Symfony (at least I think I cannot easily use…
Bart Wesselink
  • 286
  • 6
  • 16
0
votes
2 answers

Dovecot Object Storage Plugin

I know this isn't a very technical question; but where can I find the high-latency object storage addon for amazon s3? The official Open-Xchange site link gives a 404 to the 'Dovecot Store'. I've been restlessly trying to have this done for quite…
jesmaestro
  • 13
  • 1
  • 5
0
votes
1 answer

Sqirrelmail, Postfix and Dovecot

I have installed Sqirrelmail, Postfix and Dovecot. Sqirrelmail does not relay any errors. There is no incoming or sending of mail. Where "user1" is the user logged into Sqirrelmail. Can anyone see my issue? In var/log/mail.log Jun 20 18:40:37…
pigfox
  • 1,301
  • 3
  • 28
  • 52
0
votes
1 answer

postfix: automatically save emails as eml or msg in a separate folder

For my business activity I have a very simple Debian + Postfix + Dovecot mail server. Mails are saved under /var/mail/ in an MBox file. procmail is not installed. For spam filtering I have a mail gateway - scrollout on a virtual machine. Mail users…
silvered.dragon
  • 407
  • 1
  • 7
  • 19
0
votes
1 answer

Dovecot+Postfix own Userdatabase

I want to use Postfix+Dovecot as email solution. We already have a website with Woltlab Burning Board running. Some of these users (support staff, moderators, devs) will get an email address. The most comfortable way (as administrator) is to use…
0
votes
1 answer

Sieve not filtering email

I setup Postfix with Spamassassin and Dovecot with Sieve. Spamassassin will tag the email as spam. I am trying to get Sieve to move mail tagged as "Spam" by SpamAssassin into the Junk folder. However, it is not doing so. I have no idea what I am…
Farhan Yusufzai
  • 297
  • 6
  • 23
0
votes
1 answer

How to connect dovecot on 993 port using squirrelmail

I am trying to connect dovecot on 993 port but dovecot shows below error; dovecot: imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.***.***.***, lip=192.***.***.***, TLS handshaking: SSL_accept() failed: error:140760FC:SSL…
hellzone
  • 5,393
  • 25
  • 82
  • 148
0
votes
1 answer

unable to send email on my Exim-Dovecot-Afterlogic webmail setup

I am working on ec2 ubuntu 12.04 hvm client. I have setup an MTA i-e Exim and IMAP/POP Server i-e dovecot and a webmail client afterlogic. IMAP server is working well but SMTP gives error. While sending email afterlogic fails. I have checked logs…
Hammad Raza
  • 2,313
  • 1
  • 10
  • 11
0
votes
2 answers

dovecot Invalid password in passdb: Not a valid MD5-CRYPT or PLAIN-MD5 password

I am migrating imap-courier to dovecot, I use openbsd+postfix+imap-courier, and now I'm trying to run openbsd+opensmtpd+dovecot. In the beginning it was a little traumante but it works OpenSMTPD correctly. Now I have configured dovecot, and I hope…
laur
  • 500
  • 1
  • 9
  • 23
0
votes
1 answer

Dovecot Mailbox on Dropbox

I have setup a local Dovecot server on my system and I want to store any emails I send to it in a dropbox folder. I have the following mail_location setting: mail_location = "Absolute path to my dropbox folder" I can connect to the server just fine…
K G
  • 1,715
  • 6
  • 21
  • 29
0
votes
1 answer

javax.mail.MessagingException: * BYE Internal error occurred

I am trying to install JavaMail on a CentOS 7 development machine using localhost only for the emails. Towards this end, I have installed dovecot, postfix, and mailx. I just installed dovecot using the instructions in this tutorial. But my…
CodeMed
  • 9,527
  • 70
  • 212
  • 364
0
votes
1 answer

lmtp seemingly unsupported by postfix

I'm setting up my mail server and I followed that tutorial https://www.linode.com/docs/email/postfix/email-with-postfix-dovecot-and-mysql to help me doing so. Everything went fine during the setup and configuration but when it went to test problem…
0
votes
2 answers

How to get UIDNEXT in python procmail pipe script?

I have this python script for inserting raw email to db. Do not ask me why I am inserting raw mail to database. import sys from DB import * import email full_msg = sys.stdin.readlines() j = ''.join(full_msg) msg = email.message_from_string(j) sql…
pregmatch
  • 2,629
  • 6
  • 31
  • 68
0
votes
1 answer

How to deliver an email to a large number of local users directly via doveadm

How to send an email to a large number of local users(about 100K)? Our mail server uses postfix and dovecot. It takes too long to send the email through SMTP. Is there any solution to deliver the email to all local user mailboxes directly? dovecot…