Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct texts about obsoleted dkim authentication method for scenarios #1599

Merged
merged 1 commit into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion default/scenari/send.publickey
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
title.gettext anyone no authentication if DKIM signature is OK
title.gettext need authentication

true() smtp -> request_auth
true() md5,smime -> do_it
8 changes: 4 additions & 4 deletions doc/sympa_scenario.pod
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,6 @@ If it is not given, 'C<nobody>' will be set.
Default method.
No actual authentication, and if any, sender of the message is used.

=item C<dkim>

Authenticated by DKIM signature.

=item C<md5>

Authenticated by web authentication (password),
Expand All @@ -235,6 +231,10 @@ or TLS client certificate.

=back

Note:
The C<dkim> authentication method for scenarios was obsoleted
on Sympa 6.2.71b.1. Now it is a synonym of C<smtp> method.

=head3 Actions

An action consists of an action name and optional modifiers.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Sympa/ListOpt.pm
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ our %list_option = (
'smime_authenticated_messages' =>
{'gettext_id' => 'authenticated by S/MIME signature'},
'dkim_authenticated_messages' =>
{'gettext_id' => 'authenticated by DKIM signature'},
{'gettext_id' => 'with successfully verified DKIM signature'},
'editor_validated_messages' => {'gettext_id' => 'approved by moderator'},
'any' => {'gettext_id' => 'any messages'},

Expand Down