I debugged and i don't understand why is that. Since in the file "packages/acs-mail-lite/tcl/incoming-mail-procs.tcl"
we have the proc at line 29
ad_proc -private load_mails { ...
line 59
the var $queue_dir is used as the path of maildir.
# get list of all incoming mail
if {[catch {
set messages [glob "$queue_dir/new/*"]
} errmsg]} {
So i wonder why in the file
"packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl" line 14
we have this proc that returns 1 and assign into $queue_dir
set queue_dir [parameter::get_from_package_key -parameter "BounceMailDir" -package_key "acs-mail-lite"]
I