Mailing List Archive

svn commit: r1890825 - /spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm
Author: gbechis
Date: Tue Jun 15 22:39:15 2021
New Revision: 1890825

URL: http://svn.apache.org/viewvc?rev=1890825&view=rev
Log:
man page format fixes

Modified:
spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm?rev=1890825&r1=1890824&r2=1890825&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DecodeShortURLs.pm Tue Jun 15 22:39:15 2021
@@ -73,6 +73,8 @@ a maximum timeout of 5 seconds per looku

=head1 ACKNOWLEDGEMENTS

+=encoding utf8
+
A lot of this plugin has been hacked together by using other plugins as
examples. The author would particularly like to tip his hat to Karsten
Bräckelmann for his work on GUDO.pm, the original version of this plugin
@@ -149,8 +151,6 @@ sub set_config {
}
});

-=cut
-
=head1 PRIVILEGED SETTINGS

=over 4
@@ -163,6 +163,8 @@ is configured however plans to support r
Example:
url_shortener_cache_type sqlite

+=back
+
=cut

push (@cmds, {
@@ -172,7 +174,7 @@ url_shortener_cache_type sqlite
type => $Mail::SpamAssassin::Conf::CONF_TYPE_STRING
});

-=cut
+=over 4

=item url_shortener_cache_dsn (default: none)

@@ -186,6 +188,8 @@ Example:

url_shortener_cache_dsn dbi:SQLite:dbname=/tmp/DecodeShortURLs.sq3

+=back
+
=cut

push (@cmds, {
@@ -195,12 +199,14 @@ url_shortener_cache_dsn dbi:SQLite:dbnam
type => $Mail::SpamAssassin::Conf::CONF_TYPE_STRING
});

-=cut
+=over 4

=item url_shortener_cache_username (default: none)

The username that should be used to connect to the database.

+=back
+
=cut

push (@cmds, {
@@ -210,12 +216,14 @@ The username that should be used to conn
type => $Mail::SpamAssassin::Conf::CONF_TYPE_STRING
});

-=cut
+=over 4

=item url_shortener_cache_password (default: none)

The password that should be used to connect to the database.

+=back
+
=cut

push (@cmds, {
@@ -225,7 +233,7 @@ The password that should be used to conn
type => $Mail::SpamAssassin::Conf::CONF_TYPE_STRING
});

-=cut
+=over 4

=item url_shortener_cache_ttl (default: 86400)

@@ -239,6 +247,8 @@ echo "DELETE FROM short_url_cache WHERE

NOTE: replace C<ttl> above with the same value you use for this option

+=back
+
=cut

push (@cmds, {
@@ -248,12 +258,14 @@ NOTE: replace C<ttl> above with the same
type => $Mail::SpamAssassin::Conf::CONF_TYPE_NUMERIC
});

-=cut
+=over 4

=item url_shortener_loginfo (default: 0 (off))

If this option is enabled (set to 1), then short URLs and the decoded URLs will be logged with info priority.

+=back
+
=cut

push (@cmds, {
@@ -263,12 +275,14 @@ If this option is enabled (set to 1), th
type => $Mail::SpamAssassin::Conf::CONF_TYPE_BOOL
});

-=cut
+=over 4

=item max_short_urls (default: 10)

The max depth of short urls that will be chained until it stops looking further.

+=back
+
=cut

push (@cmds, {