Re: [RCU] RCU 1.2 & Enigma (s/mime)

2016-05-23 Thread A.L.E.C
On 05/23/2016 07:54 PM, Jari Fredriksson wrote:
>> But... My posts contain a signed plain message wrapped with pgp stuff. I
>> would love to have the signature sent as an separate mime part. I can
>> see that enigma supports this format, at least when reading a message
>> from some other. How to enable that in roundcube/enigma?
> 
> Err. Not S/MIME but PGP/MIME is what I was trying to ask...

You can't control that (yet). The format is chosen automatically. Its
"inline" for plain text messages and PGP/MIME for multipart (e.g. HTML
or with attachment).

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] RCU 1.2 & Enigma (s/mime)

2016-05-23 Thread Jari Fredriksson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jari Fredriksson kirjoitti 23.5.2016 20:47:
> Nice!
> 
> But... My posts contain a signed plain message wrapped with pgp stuff. I
> would love to have the signature sent as an separate mime part. I can
> see that enigma supports this format, at least when reading a message
> from some other. How to enable that in roundcube/enigma?

Err. Not S/MIME but PGP/MIME is what I was trying to ask...

- -- 
jarif.bit
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAldDQ8cACgkQKL4IzOyjSraoqgCg7r3q4eKvVYfpOyrIUmLvkorJ
kmkAoL7/H4MdCUov38o43qBOIkpC/hBI
=J+RK
-END PGP SIGNATURE-
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] RCU and PHP5.4.4

2012-07-02 Thread A.L.E.C
On 07/02/2012 10:08 AM, Администратор wrote:
 Hi, comrades.
 I upgraded PHP version to 5.4.4 and now, when user create new message I
 see in roudcube logs:
 [02-Jul-2012 07:56:35 UTC] PHP Warning:  Creating default object from
 empty value in /usr/local/www/roundcube/program/steps/mail/compose.inc
 on line 239
 What I do check to fix this error?

Check this.

https://github.com/roundcube/roundcubemail/commit/252d27459c05ff7fa38f2ac446eac9845f490c04

-- 
Aleksander 'A.L.E.C' Machniak
LAN Management System Developer [http://lms.org.pl]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl


___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] RCU and PHP5.4.4

2012-07-02 Thread Администратор

Thank you for support, but error still present.
RCU version 0.7.2
What I can check to fix this error else?

Best regards, Vladislav Kharitonov

02.07.2012 12:14, A.L.E.C пишет:

On 07/02/2012 10:08 AM, Администратор wrote:

Hi, comrades.
I upgraded PHP version to 5.4.4 and now, when user create new message I
see in roudcube logs:
[02-Jul-2012 07:56:35 UTC] PHP Warning:  Creating default object from
empty value in /usr/local/www/roundcube/program/steps/mail/compose.inc
on line 239
What I do check to fix this error?

Check this.

https://github.com/roundcube/roundcubemail/commit/252d27459c05ff7fa38f2ac446eac9845f490c04




___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] RCU

2009-04-01 Thread Zhang Huangbin
Joseph Myalla wrote:
 After installation, roundcube shows only inbox folder, how do we
 create other folder and associate the to RCU, like Drafts, trash, spam

   

In config/main.inc.php, set:

$rcmail_config['create_default_folders'] = TRUE;

-- 
Best regards.

Zhang Huangbin

- Open Source Mail Server Solution for RHEL/CentOS 5.x:
  http://code.google.com/p/iredmail/

___
List info: http://lists.roundcube.net/users/


Re: [RCU] RCU

2009-04-01 Thread Claudio Kuenzler
Hi

I had the same problem at the begin but its really just a configuration
thing. I'm using a dovecot IMAP server and using the standard mail folders.
Using the following configuration (in your main.inc.php):

// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'Drafts';

// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'Junk';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'Trash';

// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent',
'Junk', 'Trash');


On Wed, Apr 1, 2009 at 1:41 PM, Joseph Myalla chanan...@gmail.com wrote:

 After installation, roundcube shows only inbox folder, how do we
 create other folder and associate the to RCU, like Drafts, trash, spam

 --
 Myalla J.C
 Kibaha Education Centre
 P.O Box 30054 Kibaha
 Pwani
 Tanzania
 +255787680744
 ___
 List info: http://lists.roundcube.net/users/

___
List info: http://lists.roundcube.net/users/


Re: [RCU] RCU

2009-04-01 Thread Claudio Kuenzler
ah thanks zhang
i completely forgot to mention that one!

On Wed, Apr 1, 2009 at 1:48 PM, Zhang Huangbin zhbmaillisto...@gmail.comwrote:

 Joseph Myalla wrote:
  After installation, roundcube shows only inbox folder, how do we
  create other folder and associate the to RCU, like Drafts, trash, spam
 
 

 In config/main.inc.php, set:

 $rcmail_config['create_default_folders'] = TRUE;

 --
 Best regards.

 Zhang Huangbin

 - Open Source Mail Server Solution for RHEL/CentOS 5.x:
  http://code.google.com/p/iredmail/

 ___
 List info: http://lists.roundcube.net/users/

___
List info: http://lists.roundcube.net/users/


Re: [RCU] RCU

2009-04-01 Thread Joseph Myalla
thanx to all

On Wed, Apr 1, 2009 at 4:51 AM, Claudio Kuenzler nap...@gmail.com wrote:
 ah thanks zhang
 i completely forgot to mention that one!

 On Wed, Apr 1, 2009 at 1:48 PM, Zhang Huangbin zhbmaillisto...@gmail.com
 wrote:

 Joseph Myalla wrote:
  After installation, roundcube shows only inbox folder, how do we
  create other folder and associate the to RCU, like Drafts, trash, spam
 
 

 In config/main.inc.php, set:

 $rcmail_config['create_default_folders'] = TRUE;

 --
 Best regards.

 Zhang Huangbin

 - Open Source Mail Server Solution for RHEL/CentOS 5.x:
  http://code.google.com/p/iredmail/

 ___
 List info: http://lists.roundcube.net/users/





-- 
Myalla J.C
Kibaha Education Centre
P.O Box 30054 Kibaha
Pwani
Tanzania
+255787680744
___
List info: http://lists.roundcube.net/users/