Changeset 1082

Show
Ignore:
Timestamp:
09/17/06 12:54:18 (2 years ago)
Author:
jm3
Message:

obscured email addresses to foil spammers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • feedmelinks/FAQ/index.php

    r1047 r1082  
    261261                        Yes. we support connections via HTTP and 
    262262                        can make your links available to you as XML 
    263                         over HTTP or RSS. <a href="mailto:<%= get_maintainer_email() %>">Contact us</a> for access and 
     263                        over HTTP or RSS. <a href="mailto:<%= get_spamsafe_email() %>">Contact us</a> for access and 
    264264                        the API details. 
    265265                </div> 
     
    274274                        Yes! 
    275275                        <br /> 
    276                         Send emails from your mail program (or script) to <%= encodeAddress( 'add@feedmelinks.com', 'add at feedmelinks dot com' ) %>. 
     276                        Send emails from your mail program (or script) to "add&nbsp;@&nbsp;feedmelinks&nbsp;.&nbsp;com" (no spaces) 
    277277                        <p/> 
    278278 
     
    413413         
    414414                        <p/> 
    415                         <a href="mailto:<%= get_maintainer_email() %>">Email us</a> for additional help or documentation... 
     415                        <a href="mailto:<%= get_spamsafe_email() %>">Contact Us</a> for additional help or documentation... 
    416416         
    417417                </div> 
  • feedmelinks/_config/servers.xml

    r953 r1082  
    1717                database-name="fml_fml" 
    1818                maintainer-email="jm3@codeswami.com" 
     19                spamsafe-email="&amp;#106;&amp;#109;&amp;#051;&amp;#064;&amp;#099;&amp;#111;&amp;#100;&amp;#101;&amp;#115;&amp;#119;&amp;#097;&amp;#109;&amp;#105;&amp;#046;&amp;#099;&amp;#111;&amp;#109;" 
     20                spamtrap-email="no-spam@feedmelinks.com" 
    1921                xsl-parser="/usr/bin/xsltproc" 
    2022                http-downloader="/usr/bin/lynx" 
     
    3436                database-name="fml" 
    3537                maintainer-email="your-email@your-domain.com" 
     38                spamsafe-email="somehow-obscured@domain.com" 
     39                spamtrap-email="spamtrap@your-domain.com" 
    3640                xsl-parser="/sw/bin/xsltproc" 
    3741                http-downloader="/sw/bin/lynx" 
     
    5155                database-name="hirokai_jm3DataMart" 
    5256                maintainer-email="&amp;#106;&amp;#109;&amp;#51;&amp;#64;&amp;#99;&amp;#111;&amp;#100;&amp;#101;&amp;#115;&amp;#119;&amp;#97;&amp;#109;&amp;#105;&amp;#46;&amp;#99;&amp;#111;&amp;#109;" 
     57                spamsafe-email="&amp;#106;&amp;#109;&amp;#51;&amp;#64;&amp;#99;&amp;#111;&amp;#100;&amp;#101;&amp;#115;&amp;#119;&amp;#97;&amp;#109;&amp;#105;&amp;#46;&amp;#99;&amp;#111;&amp;#109;" 
     58                spamtrap-email="undeliverable@whatever.com" 
    5359                xsl-parser="/usr/local/bin/xsltproc" 
    5460                http-downloader="/usr/local/bin/lynx" 
  • feedmelinks/folder-as-rss.php

    r927 r1082  
    116116    <description><%= $errors ? "this " . getCatName() . " is not available as RSS" : $title %></description> 
    117117    <managingEditor><%= getEmailAddressForUser( $owner ) %></managingEditor> 
    118     <webMaster><%= get_maintainer_email() %></webMaster> 
     118    <webMaster><%= get_spamsafe_email() %></webMaster> 
    119119    <link><%= $site %></link> 
    120120    <language>en-us</language> 
  • feedmelinks/import/do-random-checks.inc.php

    r927 r1082  
    3434 
    3535        if( $num_dupes > $max_dupes_allowed ) { 
    36                 fatal( "We noticed that a percentage ($max_dupes_allowed links) of the links you're importing already exist in your Feed Me Links account. Have you imported this bookmarks file already? If not, please <a href='mailto:" . get_maintainer_email() . "'>email the administrators</a> for help importing your favorites." ); 
     36                fatal( "We noticed that a percentage ($max_dupes_allowed links) of the links you're importing already exist in your Feed Me Links account. Have you imported this bookmarks file already? If not, please <a href='mailto:" . get_spamsafe_email() . "'>Contact Us</a> for help importing your favorites." ); 
    3737                exit( 0 ); 
    3838        } # else 
  • feedmelinks/install/how-confusing.php

    r927 r1082  
    4141now you can add new sites to your big mess of links with one 
    4242single click, like a pro. wicked cool.  <a 
    43 href="mailto:<%= get_maintainer_email() %>">contact the helpdesk</a> if 
     43href="mailto:<%= get_spamsafe_email() %>">Contact Us</a> if 
    4444you need assistance.</p> 
    4545 
  • feedmelinks/modules/utils.inc.php

    r1081 r1082  
    22042204                                echo "Sorry, something bad happened and your new folder wasn't created.<br />"; 
    22052205                                echo "$qs"; 
    2206                                 echo "Please click your back button and choose a different folder, or email " . get_maintainer_email() . ".<br />\n";  
     2206                                echo "Please click your back button and choose a different folder, or <a href='" . get_spamsafe_email() . "'>Contact Us</a>.<br />\n";  
    22072207                                conClose( $con_addFolderDriver );  
    22082208                                return 0; 
  • feedmelinks/rss-1.0.php

    r937 r1082  
    55  include_once( "modules/utils.inc.php" ); 
    66        $site = getSiteUrl(); 
     7        $email = get_spamsafe_email(); 
    78                         
    89echo "<?xml version=\"1.0\"?>"; 
     
    1718    <title>Feed Me Links</title> 
    1819    <description>your portable public link suitcase</description> 
    19                 <managingEditor><%= get_maintainer_email() %></managingEditor> 
    20                 <webMaster><%= get_maintainer_email() %></webMaster> 
     20                <managingEditor><%= $email %></managingEditor> 
     21                <webMaster><%= $email %></webMaster> 
    2122    <link><%= $site %></link> 
    2223    <language>en-us</language> 
  • feedmelinks/rss-2.0.php

    r927 r1082  
    1919    <description>your portable public link suitcase</description> 
    2020                <dc:language>en-us</dc:language> 
    21                 <dc:creator><%= get_maintainer_email() %></dc:creator> 
     21                <dc:creator><%= get_spamsafe_email() %></dc:creator> 
    2222                <dc:rights>Copyleft 2004</dc:rights> 
    2323                <dc:date><%= $dcdate %></dc:date> 
    24                 <admin:errorReportsTo rdf:resource="mailto:<%= get_maintainer_email() %>"/> 
     24                <admin:errorReportsTo rdf:resource="mailto:<%= get_spamsafe_email() %>"/> 
    2525<% 
    2626                $hideTimes = true;