pysieved set up in /etc/inetd.conf setup
----------------------------------------
sieve stream tcp nowait root /usr/bin/python python
/var/lib/pysieved/pysieved.py --inetd --config /etc/pysieved.ini
/etc/pysieved.ini setup
------------------------
I use system accounts for mail access, so PAM authentication is
selected, and of course Exim storage model:
[main]
# Authentication back-end to use
auth = pam
# User DB back-end to use
userdb = passwd
# Storage back-end to use
storage = Exim
# Bind to what address? (Ignored with --stdin)
#bindaddr = 127.0.0.1
# Listen on what port? (Ignored with --stdin)
port = 2000
[... et cetera, stock template contents!]
Exim configuration, (shown as a patch)
--------------------------------------
The first diff hunk is against the "userforward:" router
section. I cloned the address_file transport and named the copy
address_file_forward, for forwarding only, so that we
are not changing the configuration of all routers that
use address_file!
I then changed this cloned transport to do maildir delivery.
It handles the INBOX. prefix that RoundCube's plugin
puts on the folders. E.g. if your rule says to
file into folder Foo, then the Sieve script actually
has fileinto "INBOX.Foo". The exim configuration
will translate this to /<yourhome>/Maildir/.Foo:
webserver:/etc/exim4# quilt diff
Index: exim4/exim4.conf.template
===================================================================
--- exim4.orig/exim4.conf.template 2010-08-18 11:52:21.000000000
-0700
+++ exim4/exim4.conf.template 2010-08-18 12:33:37.000000000 -0700
@@ -1241,7 +1241,7 @@
allow_filter
forbid_smtp_code = true
directory_transport = address_directory
- file_transport = address_file
+ file_transport = address_file_forward
pipe_transport = address_pipe
reply_transport = address_reply
skip_syntax_errors
@@ -1431,6 +1431,24 @@
envelope_to_add
return_path_add
+address_file_forward:
+ debug_print = "T: address_file_forward for $local_part@$domain"
+ driver = appendfile
+ delivery_date_add
+ envelope_to_add
+ return_path_add
+
+ maildir_format
+
+ directory = ${if eq{$address_file}{inbox} \
+ {$home/Maildir} \
+ {${if eq{${substr_0_1:$address_file}}{/} \
+ {$address_file} \
+ {${if match {$address_file}{^INBOX\.} \
+ {${sg {$address_file} \
+
{^(INBOX\.)(.*)\$}{$home/Maildir/.\$2}}} \
+ {$home/Maildir/$address_file}}}}}}
+
#####################################################
### end transport/30_exim4-config_address_file
#####################################################
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear,
I'd like to remove the Calendar function from RC completely. It seems that this setting is not in main.inc.php. How should I proceed?
Much Thanks!
Charles
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
hello A.L.E.C
and others developers
the plugin password is not fully functional whit pam
there is a bug in the documentation page pam
http://pecl.php.net/bugs/bug.php?id=16995
but is for other platform ( gentoo ) not CentOS ( my platform )
But I think the procedure correctly realize
i add in my php.ini
pam.servicename = "php"
cp /etc/pam.d/login /etc/pam.d/php
service httpd restart
This is the right procedure I think
but when I try to change password, change is denied
may be /etc/pam.d/php is not apache not readable
my permissions of /etc/pam.d/php is
# ls -al /etc/pam.d/php
-rw-r--r-- 1 root root 643 aoïżœ 19 04:28 /etc/pam.d/php
I listen to all proposals to help
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello list,
This weekend I looked the first time into the password plugin - very great
plugin! Makes Roundcube even better as it already is, congratulations to all
the contributors!
If someone's interested in using Roundcube to be able to change email
account's passwords managed by Confixx, here's a small how to:
1) Grant SQL permissions for Roundcube DB-user:
- SELECT in database confixx, table pop3, coloumns account and longpw
- UPDATE in database confixx, table pop3, coloumn longpw
- UPDATE in database confixx, table allgemein, coloumn newpwd
2) Activate the password plugin in Roundcube main.inc.php:
$rcmail_config['plugins'] = array('password');
3) Copy plugins/password/config.inc.php.dist to
plugins/password/config.inc.php
Change/Verify that driver is set to sql: $rcmail_config['password_driver'] =
'sql';
Use the following SQL query as password_query:
$rcmail_config['password_query'] = 'UPDATE confixx.pop3, confixx.allgemein
SET confixx.pop3.longpw=%c, confixx.allgemein.newpwd=2 WHERE (account=%u)';
A more documented howto with explanations can be found here:
http://www.claudiokuenzler.com/ithowtos/roundcube_change_password_confixx.pâŠ
Tested it with Roundcube 0.4-stable resp. SVN version r3897 and works fine.
cheers,
ck
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi there! how can I set as default email's body with Verdana 12, I saw it is
possible at signature but not at email body's
--
Saludos!!
Luciano Andino
GNU/Linux user #185103
Santa Fe - Argentina
-----------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I just installed RoundCube 0.4 on my mail server(centos5, Postfix,
Courier, MySQL) and it look great. Then I installed the Vacation Plugin
V.1.9.9. Now when I click Setting I got:
CONFIGURATION ERROR
Vacation plugin: Driver virtual does not allow transport to be empty.
Please edit config.ini
Please read the INSTALL instructions!
------------------------------
Here is the config.ini:
[root@mail vacation]# cat config.ini
[default]
driver = "virtual"
subject = "Default subject"
body = "default.txt"
[mail.mydomain.com]
dsn = "mysql://roundcube:password@localhost"
transport = "mail.mydomain.com"
dbase = "mail"
always_keep_copy = true
select_query = "SELECT destination FROM %m.virtual_aliases WHERE
source='%e' AND destination='%g'"
delete_query = "DELETE FROM %m.virtual_aliases WHERE domain_id=%i AND
source='%e'"
insert_query = "INSERT INTO %m.virtual_aliases
(domain_id,source,destination) VALUES (%i,'%e','%g')"
domain_lookup_query = "SELECT id FROM postfix.virtual_domains WHERE
name='%d'"
createvacationconf = true
always_keep_message = true
disable_forward = False
----------------------------------
When I configure the plugin, I got really confused on the transport
setting in config.ini. Please help me to make it works.
My mail server use Postfix with MySQL handle virtual user/domain. Some
related settings:
[root@mail vacation]# postconf -n
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
mydestination = mail.mydomain.com, localhost, localhost.localdomain
myhostname = mail.mydomain.com
mynetworks = 127.0.0.0/8
newaliases_path = /usr/bin/newaliases.postfix
proxy_read_maps = $local_recipient_maps $mydestination
$virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps
$virtual_mailbox_domains $relay_recipient_maps $relay_domains
$canonical_maps $sender_canonical_maps $recipient_canonical_maps
$relocated_maps $transport_maps $mynetworks $virtual_mailbox_limit_maps
transport_maps = proxy:mysql:/etc/postfix/mysql-virtual_transports.cf
unknown_local_recipient_reject_code = 550
virtual_alias_domains =
virtual_alias_maps =
proxy:mysql:/etc/postfix/mysql-virtual_forwardings.cf,
mysql:/etc/postfix/mysql-virtual_email2email.cf,mysql:/etc/postfix/mysql-virtual_aliases.cf
virtual_create_maildirsize = yes
virtual_gid_maps = static:5000
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-virtual_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql-virtual_mailboxes.cf
-----------------------------------------------
Thanks for help.
--
Jian Gao
IT Administrator
SJ Geophysics Ltd. <http://www.sjgeophysics.com>
jian.gao(a)sjgeophysics.com <mailto:jian.gao@sjgeophysics.com>
Tel: (604)582-1100
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear Roundcube users
After the big new features in 0.4-beta this final release now completes the
unfinished work and fixes bugs related to the new threaded message listing
and address groups features. We also cleaned up the user interface and
tried to make all UI elements more consistent.
With this release the skins have been excluded from the GPL license terms
(see README file). This allows you to choose whatever license you want for
your custom skins and even opens the door for creating commercial skins.
We recommend to update all existing Roundcube installations with this
release. Get it from http://roundcube.net/download, a complete list of
changes can be found here: http://trac.roundcube.net/wiki/Changelog
Have fun,
Thomas
_______________________________________________
List info: http://lists.roundcube.net/users/
On Thu, 12 Aug 2010 13:26:40 +0200, Pawel Warowny <sysadmin(a)master.pl>
wrote:
> Dnia Wed, 11 Aug 2010 15:17:00 -0400
> Daniel Caleb <nix(a)tek12.com> napisaĆ(a):
>
> Hi
>
>> Recently upgraded from SVN to 0.4 stable - and now the button to
>> attach files is grayed out. I updated the plugins as well, with
>> trunk_r-3878.
>
> If you created custom skin, try first to replace it with the default
> skin from 0.4.
Thanks for the quick reply... That was indeed the issue. Although I
hadn't made any real changes aside from colors and a few icons. The
default skin was left in place, and I assigned a specific folder on a
per domain basis for user logins. But, none the less, switching to the
default skin seemed to solve the problem. Thanks for the suggestion.
It's always the most obvious answers that are the hardest.
Daniel
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Recently upgraded from SVN to 0.4 stable - and now the button to
attach files is grayed out. I updated the plugins as well, with
trunk_r-3878.
Tried to isolate a plug conflict by removing all
plugins, except for filesystem_attachments - but that didn't seem to
help any.
Any ideas what might be causing this, and where to look for
clues?
thanks
Daniel
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
AOL users:
If you continue to mark this list as "spam", you risk having this list
blocked for *all* AOL users. Additionally, you'll risk having all other
lists I host, blocked, towards all AOL users. Your marking the mail as
spam causes damage to others.
As such, this is your warning: As I detect you marking the mail as spam,
you will be unsubscribed from the list, without notice.
- jason, wearing the hat of
postmaster(a)lists.roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e