Skip to content

Commit

Permalink
Bugfix: config.postfix does not accept lda imap, only dovecot (yast d…
Browse files Browse the repository at this point in the history
…efault) or cyrus.
  • Loading branch information
Bo Simonsen committed Jan 14, 2018
1 parent 5088d00 commit 05a96e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/Mail.rb
Expand Up @@ -419,7 +419,7 @@ def Read(abort)
@postfix_mda = :local
elsif postfix_mda_s == "procmail"
@postfix_mda = :procmail
elsif postfix_mda_s == "imap"
elsif postfix_mda_s == "dovecot"
@postfix_mda = :imap
else
@postfix_mda = nil
Expand Down Expand Up @@ -770,7 +770,7 @@ def WriteGeneral
if @postfix_mda == :procmail
s_mda = "procmail"
elsif @postfix_mda == :imap
s_mda = "imap"
s_mda = "dovecot"
end
SCR.Write(path(".sysconfig.postfix.POSTFIX_MDA"), s_mda)
end
Expand Down

0 comments on commit 05a96e7

Please sign in to comment.