Skip to content

Commit

Permalink
added missing.html for missing in action PAUSE accounts.
Browse files Browse the repository at this point in the history
  • Loading branch information
barbie committed May 28, 2010
1 parent cdf0c5a commit 5a565b8
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for CPAN-Testers-WWW-Statistics

0.85 28/05/2010
- added missing.html for missing in action PAUSE accounts.

0.84 20/04/2010
- fixed ranges() to return correct ranges for a range ending on or
after the current month, and ignore any that start on or after the
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Expand Up @@ -7,7 +7,6 @@ bin/addresses.pl
bin/cpanstats-writegraphs
bin/cpanstats-writepages
bin/getmailrc.pl
data/01mailrc.txt
examples/cpanstats.sql
examples/cpanstats.sh
examples/example-settings.ini
Expand Down Expand Up @@ -60,6 +59,7 @@ templates/interest.html
templates/layout.html
templates/layout-wide.html
templates/leadercpan.html
templates/missing.html
templates/month.html
templates/mperls.html
templates/mplatforms.html
Expand Down
39 changes: 39 additions & 0 deletions templates/missing.html
@@ -0,0 +1,39 @@
[%
title = 'Missing In Action' ;
box_sites = 1

crumb2_name = 'Main' ;
crumb2_href = '/' ;
crumb1_name = 'Missing In Action' ;
%]

<p>Since setting up the ability for CPAN authors to receive daily summary reports, the CPAN Testers server has received the
occasional bounce back, when the destination mail server has rejected an email from the CPAN Testers. To avoid continually
receiving these bounce backs, we disable sending to these addresses. This then means that these users no longer receive
any daily summaries or individual reports from the CPAN Testers preferences system.</p>
<p>If your PAUSE id is listed below, please take the time to check how your <a href="http://pause.perl.org/">PAUSE account</a>
is set up, as you may have inadvertantly provided an mispelt address, or perhaps an old email address is listed that requires
updating. Or it is quite possible that need to set your PAUSE account to allow receipt of email. Once logged into PAUSE,
under the 'Account' menu heading, click 'Edit Account Info'. Here you can enter a visible email address, a secret email
address and set how redirect works. Regards the latter, if you select 'Neither Nor' this will disable your ability to
receive CPAN Testers emails, RT bug tickets and potentially anyone wishing to contact you regarding your modules. If it is
your intention to not receive these emails, please ensure your modules provide some means for users to contact you.</p>
<p>Once your pause redirect is corrected as appropriate, please contact <a href="mailto:barbie@cpan.org">me</a> and I will
remove you from the list below, and re-enable the CPAN Testers summaries for you.</p>

<h2>Missing In Action</h2>

<div class="boxer flat">
<table>
<tr><th class="top">PAUSE</th><th class="top">Timestamp</th><th class="top">Reason</th></tr>
[% IF missing %]
[% FOREACH item = missing %]
<tr><th class="side">[% item.pauseid %]</th><td>[% item.timestamp %]</td><td>[% item.reason %]</td></tr>
[% END %]
[% ELSE %]
<tr><td colspan="3">All PAUSE ids accounted for.</td></tr>
[% END %]
</table>
</div>

<p>Note: The timestamp indicates the time of the last received bounce back email.</p>

0 comments on commit 5a565b8

Please sign in to comment.