[horde] Auto responder plugin

Peter Billson pete at turtle.com
Fri May 9 15:13:33 UTC 2014


-----Original Message-----
From: horde-bounces at lists.horde.org [mailto:horde-bounces at lists.horde.org]
On Behalf Of Leo Prince
Sent: Friday, May 09, 2014 6:21 AM
To: Michael M Slusarz
Cc: horde at lists.horde.org
Subject: Re: [horde] Auto responder plugin

On 05/09/2014 12:21 AM, Michael M Slusarz wrote:
> Quoting Steffen <skhorde at smail.inf.fh-bonn-rhein-sieg.de>:
>
>>>> what filter backend did you've configured?
>>
>> Horde cannot give you vacation support. You need it at the MDA level. 
>> It can be done through procmail, maildrop, sieve, ... .
>
> As Steffen says, Vacation is not available if you are using the IMAP 
> backend in Ingo.
>
>> Maybe there exists a IMAP-backend that also configures vacation.
>
> There's no way of sending messages via existing IMAP commands so 
> there's no way that sending vacation messages could work using a pure 
> IMAP backend.
>
> michael
>
> ___________________________________
> Michael Slusarz [slusarz at horde.org]
>

Michael,

I did check how to change the existing IMAP filter for the vacation to work
with but no avail. I am using a Plesk environment so does changing the
filter will make any issues with the Qmail mail server ?

Could you please guide me to change the default IMAP filter to make this
vacation to work. Any useful docs ?

Thanks in advance.
--
Horde mailing list
Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail:
horde-unsubscribe at lists.horde.org


My backend.local.php looks like:

<?php
/* Disable IMAP backend */
$backends['imap']['disabled'] = true;

/* Procmail */
$horde_username = $GLOBALS['registry']->getAuth();
$backends['procmail'] = array(
    'disabled' => false,
    'transport' => array(
        Ingo::RULE_ALL => array(
            'driver' => 'vfs',
            'params' => array(
                'hostspec' => 'localhost',
                'filename' => '.procmailrc',
                'vfs_path' => '/home/%u/',
                'date' => '/bin/date',
                'echo' => '/bin/echo',
                'ls' => '/bin/ls',
                'vfstype' => 'ftp',
                'port' => 21
            ),
        ),
    ),
    'script' => array(
        Ingo::RULE_ALL => array(
            'driver' => 'procmail',
            'params' => array(
                'path_style' => 'maildir',
                'variables' => array(
                    'DEFAULT' => '/home/'.$horde_username.' /Mail/.INBOX/',
                    'MAILDIR' => '/home/'.$horde_username.'/Mail',
                    'VACATION_DIR' => '/home/'.$horde_username
                ),
            ),
        ),
    ),
    'shares' => false
);





More information about the horde mailing list