X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FConfig.pm;h=c7007a76115ba5285b7408609333b8c88873ff02;hb=1bb2d54aede40f8d702e08b2513fee5aa619629b;hp=87e61a2f54de7efabac7526b12fda83529065a79;hpb=1df784bf875bea9bc14b82d4e0bfc413ba202f06;p=debbugs.git diff --git a/Debbugs/Config.pm b/Debbugs/Config.pm index 87e61a2..c7007a7 100644 --- a/Debbugs/Config.pm +++ b/Debbugs/Config.pm @@ -78,10 +78,11 @@ BEGIN { ], text => [qw($gBadEmailPrefix $gHTMLTail $gHTMLExpireNote), ], + cgi => [qw($gLibravatarUri $gLibravatarUriOptions)], config => [qw(%config)], ); @EXPORT_OK = (); - Exporter::export_ok_tags(qw(globals text config)); + Exporter::export_ok_tags(keys %EXPORT_TAGS); $EXPORT_TAGS{all} = [@EXPORT_OK]; $ENV{HOME} = '' if not defined $ENV{HOME}; } @@ -364,6 +365,38 @@ Default: list_domain set_default(\%config,'bug_subscription_domain',$config{list_domain}); +=head2 CGI Options + +=over + +=item libravatar_uri $gLibravatarUri + +URI to a libravatar configuration. If empty or undefined, libravatar +support will be disabled. Defaults to +http://cdn.libravatar.org/avatar/ which uses a federated Avatar system +and falls back to gravatar if necessary. + +=cut + +set_default(\%config,'libravatar_uri',"http://cdn.libravatar.org/avatar/"); + +=item libravatar_uri_options $gLibravatarUriOptions + +Options to append to the md5_hex of the e-mail. This sets the default +avatar used when an avatar isn't available. Currently defaults to +'?d=retro', which causes a bitmap-looking avatar to be displayed for +unknown e-mails. + +Other options which make sense include ?d=404, ?d=wavatar, etc. See +the API of libravatar for details. + +=cut + +set_default(\%config,'libravatar_uri_options','?d=retro'); + + +=back + =head2 Misc Options =over