imapd:Loading hard-coded DH parameters

2007-11-03 Thread John Thomas
Am attempting to get secure imap connection working optimally.  I do not 
need server verification.

I am getting these in my logs.  Do you know what it means or, more 
importantly, if I need to worry?

Nov  3 08:51:43 srv imaps[9301]: imapd:Loading hard-coded DH parameters
Nov  3 08:52:33 srv sieve[9260]: imapd:Loading hard-coded DH parameters

In my imapd.conf, I have

tls_cert_file: /etc/cyrus-ssl/my.crt
tls_key_file: /etc/cyrus-ssl/my.key
tls_ca_file: /etc/cyrus-ssl/cacert.crt

The key has been signed by www.cacert.org

-- 
Sincerely,
John Thomas

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: imapd:Loading hard-coded DH parameters

2007-11-03 Thread Ken Murchison
Its nothing to worry about.


John Thomas wrote:
 Am attempting to get secure imap connection working optimally.  I do not 
 need server verification.
 
 I am getting these in my logs.  Do you know what it means or, more 
 importantly, if I need to worry?
 
 Nov  3 08:51:43 srv imaps[9301]: imapd:Loading hard-coded DH parameters
 Nov  3 08:52:33 srv sieve[9260]: imapd:Loading hard-coded DH parameters
 
 In my imapd.conf, I have
 
 tls_cert_file: /etc/cyrus-ssl/my.crt
 tls_key_file: /etc/cyrus-ssl/my.key
 tls_ca_file: /etc/cyrus-ssl/cacert.crt
 
 The key has been signed by www.cacert.org
 


-- 
Kenneth Murchison
Systems Programmer
Project Cyrus Developer/Maintainer
Carnegie Mellon University

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: Shared folder filtering (probably a thousand times asked)

2007-11-03 Thread Hans-Peter Jansen
Am Montag, 10. September 2007 schrieb Ulrich Spoerlein:

 upload a sieve script as your cyrus admin user. Let's call it foo. Then
 login with cyradm and attach that script to the shared folder bar.
 mboxcfg bar sieve foo

Mmhh, did exactly that with a 2.3.10:

info shared.test
{shared.test}:
  condstore: false
  duplicatedeliver: false
  lastpop:  
  lastupdate:  4-Nov-2007 01:37:38 +0100
  partition: default
  sharedseen: false
  sieve: filter
  size: 6616

filter is a this script:
require [fileinto];

if address :contains From [EMAIL PROTECTED] {
fileinto shared.test.Gesendet;
stop;
}

I try to file bcc'ed mails into shared.test.Gesendet, but attempting to do 
so results in:

sieve runtime error for  id [EMAIL PROTECTED]
: Fileinto: Permission denied

and it gets filed into shared.test instead.

It's not a ACL problem, afaics:

lam shared.text*
shared.test:
  test lrswipkxtecd
  cyrus lrswipkxtecda
  anyone p
shared.test.Gesendet:
  test lrswipkxtecd
  cyrus lrswipkxtecda
  anyone lrs

Postuser is cyrus.

Could someone please shed some light on this issue.

TIA,
Pete

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html