Add a META robots noindex/nofollow tag to SquirrelMail generated output.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 4 Apr 2005 12:58:12 +0000 (12:58 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 4 Apr 2005 12:58:12 +0000 (12:58 +0000)
Major search engines will not index squirrelmail-pages. This serves the
following points:
- The search engines' cache/index does not get polluted with useless data;
  indexing a webmail client is not of interest. We should advise search
  engines that they skip us.
- Will not make a squirrelmail install findable through google. This has
  an advantage when someone is looking for vulnerable webmail systems to
  exploit (i.e.: search for "SquirrelMail" in google, and try every system
  you find with a known exploit).
A robots.txt is not a solution because that has to be in the root of a
document tree, which squirrelmail does not have to be.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9187 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
functions/page_header.php
src/configtest.php
src/webmail.php

index 9d5ff5349753c6124e1c8e29303dd9dd366a05fc..278ac313128642695df42fc05595e83328807b3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -292,6 +292,7 @@ Version 1.5.1 -- CVS
   - Fixed checking for quota when appending to Sent folder (#1172694).
   - Create a generic function to empty a folder tree, thanks to
     Randy Smith (#1145578).
+  - Add robots noindex/nofollow meta tag to SquirrelMail generated pages.
   
 Version 1.5.0
 --------------------
index 37d6c7dd1d6128333bb6a05fea058ddfc39168ab..d62321fa5fd0a5fb1b8333527cdfa2ff23305460 100644 (file)
@@ -41,7 +41,8 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = true
     } else {
         echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
     }
-    echo "\n\n" . html_tag( 'html' ,'' , '', '', 'lang="'.$squirrelmail_language.'"' ) . "\n<head>\n";
+    echo "\n" . html_tag( 'html' ,'' , '', '', 'lang="'.$squirrelmail_language.'"' ) .
+        "<head>\n<meta name=\"robots\" content=\"noindex,nofollow\">\n";
 
     /*
      * Add closing / to link and meta elements only after switching to xhtml 1.0 Transitional.
@@ -72,7 +73,7 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = true
         do_hook('generic_header');
     }
 
-    echo "\n<title>$title</title>$xtra\n";
+    echo "<title>$title</title>\n$xtra\n";
 
     /* work around IE6's scrollbar bug */
     echo <<<ECHO
index e5d11de34bf2b3789675aa1086c7fe191fe28623..2c7cfeabfaa0975e12b0777bd7778e1b2e890b6c 100644 (file)
@@ -50,6 +50,7 @@ if (file_exists(SM_PATH . 'config/config.php')) {
 ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
 <head>
+    <meta name="robots" content="noindex,nofollow">
     <title>SquirrelMail configtest</title>
 </head>
 <body>
index 70e61fcf2e67be5305964f6536a4495eb3f47881..51d4530278d0bc6129429a139b65107372dc4ef3 100644 (file)
@@ -82,6 +82,7 @@ $err=set_up_language(getPref($data_dir, $username, 'language'));
 
 $output = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\">\n".
           "<html><head>\n" .
+         "<meta name=\"robots\" content=\"noindex,nofollow\">\n" .
           "<title>$org_title</title>\n".
           "</head>";