Skip to Content.
Sympa Menu

en - RE: [sympa-users] LDAP members inclusion not working on sympa 6.2.9

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: Steve Shipway <address@concealed>
  • To: Sivert Hatteberg <address@concealed>, "address@concealed" <address@concealed>
  • Subject: RE: [sympa-users] LDAP members inclusion not working on sympa 6.2.9
  • Date: Thu, 19 Nov 2015 21:29:45 +0000

> How do one set the "ca_verify" for a member include?
> Maybe I am missing something obvious but I cant find where to configure it.
> Its not a valid keyword in sympa.conf or in the list config file.

Here's a quick patch to the Sympa/ListDef.pm file to make this work. All the
other code to handle ca_verify is already present in the system; it just need
to be told this is a valid option for a list. I just put this in place and
it
works for me (but YMMV)

In Sympa/ListDef.pm near line 1116, add the ca_verify lines after the
nosync_time_ranges definition *There are 4 place in the file to do the same
thing* :

'nosync_time_ranges' => {
'order' => 10,
'gettext_id' => "Time ranges when inclusion is not allowed",
'format' => Sympa::Regexps::time_ranges(),
'occurrence' => '0-1'
},
'ca_verify' => {
'order' => 11,
'gettext_id' => "Certificate verification",
'format' => ['none','optional','require'],
'default' => 'require',
'occurrence' => '0-1'
},
},

Don't forget to change all 4 places. Then, restart your web server and your
Sympa processes, and it should work...

Steve


Steve Shipway
T: +64 9 3737 599 ext 86487
E: address@concealed

Attachment: smime.p7s
Description: S/MIME cryptographic signature




Archive powered by MHonArc 2.6.19+.

Top of Page