Hello,
Is there plugin or feature to store main.inc.php configuration to store
on sql table for easy management?
I see that "Admin interface for managing users and settings" feature in
the roadmap "milestone:Later"
Does this feature will cover this request?
Thanks
--
Ismail YENIGUL
Team Leader / Takım Lideri
SurGATE Labs
Phone :+90 216-4709423 | Mobile:+90 533 747 36 65
SurGATE: West Coast Labs Premium Anti-Spam Certificated
Twitter: http://www.twitter.com/surgate
Blog: http://www.surgate.com/blog
Hi,
yes it works, i'm using procmail that call sieve and also the file .forward in home directory of user.
I in the .forward file call sieve so : | /usr/libexec/dovecot/deliver
Bye
----Messaggio originale----
Da: gedeon007(a)gmail.com
Data: 07/03/2012 11.05
A: "Roundcube Users mailing list"<users(a)lists.roundcube.net>
Ogg: Re: [RCU] plugin to set forwarding in a roundcube-exim configuration
Hello,
Thank you for your answer.
Actually we don't use sieve (I haven't heard about it yet). We are using a multi tenanted environment. We configure forwarders in the following way: we have a folder for each domains in the /etc/virtual folder and each folder contains a file called aliases. All of the forwarders for domain example.com are configured in /etc/virtual/example.com/aliases file. If I add a new alias then I only run newaliases and it's working.
Do you have experiences such configuration and do you know whether this method and sieve works together?
Thank you once more.
Best regards,
Chris
2012/3/6 Benny Pedersen <me(a)junc.org>
Den 2012-03-05 16:04, Krisztián Gulyás skrev:
I would like to install a plugin (or any solution) next to my
roundcube-exim configuration to let my users set forwarding on their
own.
managesieve, if you got exim sieve working aswell
from that on make a forward sieve rule in roundcube
_______________________________________________
Roundcube Users mailing list
users(a)lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users
Hi all,
I would like to install a plugin (or any solution) next to my
roundcube-exim configuration to let my users set forwarding on their own.
Has anyone experienced something similar or could anyone help me?
Thank you very much.
Best regards,
Chris
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
it's me again :-) !!!!!!!
I would use roundcube with autologin from another php script. I found the
plugin "autologin" but it seems to work.
This is my php script :
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?
$_POST['password'] = 'password in clear and in plain text';
$_SESSION['userpassword'] = strrev(base64_encode('*yourkey*'.$_POST
['password']));
?>
<form name="roundcubelogin" action="http://192.168.254.201/roundcube/?
_task=mail" method="post" target="roundcube">
<input type="hidden" name="_timezone" value="_default_" />
<input type="hidden" name="_task" value="mail" />
<input type="hidden" name="_autologin" value="1" />
<input type="hidden" name="_user" value="mark" />
<input type="hidden" name="_host" value="192.168.254.201:143" />
<input type="hidden" name="_pass" value="<?echo $_SESSION['userpassword']?>"
/>
<input type="submit" name="submit" value="SUBMIT" />
</form>
</body>
</html>
The plugin autologin.php :
<?php
/**
* This plugin performs an automatic login if accessed
* with post Data from other Site an Portal or CMS
* Based on sample autologon PlugIn
*
* @version 0.2
* @author Eric Appelt (lacri)
*
* show into README to install and config
*
* changes
* 0.2 make a little bit secure with base64_encode strrev
* and a key thats replace after submitting encoded pass data
*
*/
class autologin extends rcube_plugin
{
function init()
{
$this->add_hook('startup', array($this, 'startup'));
$this->add_hook('authenticate', array($this, 'authenticate'));
}
function startup($args)
{
$rcmail = rcmail::get_instance();
$autologin = get_input_value('_autologin', RCUBE_INPUT_POST);
// change action to login
if ($args['task'] == 'mail' && empty($args['action']) && empty($_SESSION
['user_id']) && !empty($autologin)) {
$args['action'] = 'login';
// decode pass, revert and replace key
$_POST['_pass'] = str_replace('*yourkey*','',base64_decode(strrev
(get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'))));
// set initial cookie without this cookie login is not possible
$_COOKIE['roundcube_sessid'] = session_id();
}
return $args;
}
function authenticate($args)
{
$autologin = get_input_value('_autologin', RCUBE_INPUT_POST);
if (!empty($autologin)) {
$args['user'] = get_input_value('_user', RCUBE_INPUT_POST);
$args['pass'] = get_input_value('_pass', RCUBE_INPUT_POST);
$args['host'] = get_input_value('_host', RCUBE_INPUT_POST);
}
return $args;
}
}