ekric - 2012-09-21

Hi, im using roundcubemail-0.8.1 and vacation-1.9.9 with postfix and mysql-Driver.

Here's my config.ini:

; Configuration file
;
;
; Syntax of this file is identical to php.ini where string values need to be quoted.
; See remarks there.
;
; To overrule the default settings, create a per-host key.
; See examples at the bottom of INSTALL.TXT
;

;
;driver = "ftp"
;subject = "Default subject"
;body = "default.txt"

driver = virtual
dsn = "mysql://postfixadmin:XXX@localhost"
transport = "autoreply.XXX.XX"
dbase = "postfixadmin"
always_keep_copy = false
select_query = "SELECT * FROM postfixadmin.vacation WHERE email='%e'"
delete_query = "UPDATE postfixadmin.alias SET goto='%e' WHERE address='%e'"
insert_query = "UPDATE postfixadmin.alias SET goto='%g' WHERE address='%e'"
always_keep_message = true

binary = "/usr/bin/vacation"
flags = ""
message = ".vacation.msg"
database = ".vacation.db"
alias_identities = true
set_envelop_sender = false
always_keep_message = true

The plugin does what it should and of course I'm thankfull for it. :-)

But I have one littel problem, the checkbox "Send a notification" is always unchecked, even if the notification is active.
From the html code it seems like, that the "checked="checked" isn't generated.
Where could be the problem here?

Cheers Eric