public inbox for guile-emacs@sourceware.org
 help / color / mirror / Atom feed
From: nameless <nameless@e-mail.ru>
To: guile-emacs@sources.redhat.com
Subject: Reckitt Benckiser, Inc. All rights reserved.
Date: Sun, 17 Nov 2002 18:04:00 -0000	[thread overview]
Message-ID: <200211180159.gAI1xJh111488@logs-mtc-tf.proxy.aol.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 51 bytes --]

Attachment:
CAEC1L23.htm
Description: Binary data


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: CAEC1L23.htm --]
[-- Type: text/plain; charset=unknown-8bit; name="CAEC1L23.htm", Size: 24178 bytes --]




	
		
		
		
	
		

		
		
		
		

		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
			
			
			
				
			

			

			
		
	






















	 





 
 







  
  
  
   




	




	



















	

	


































	
		
	
	






		
		

		

		
		
		

		
			
		
		
		
			
			
			
			
			
				
			
		





	


 

 


 


 

 
 




















	
	



	
	



	
	





	
	



	
	





	
	



	
	



	
	



	
	



	
	



	
	



	
	



	
	










	
	
		


		

		
	
		
	




		



 
















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	
























	

	
		
		
		
			
			
				
		
		
		
	





	
		














	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	



















	
		
	
	


















	
		
	
	


















	
		
	
	



	













	





	




 







	





	



















<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
	
	
	
	
	
	
	<SCRIPT LANGUAGE="JAVASCRIPT" SRC="checkutil.js">
	
	</SCRIPT>
	
	<SCRIPT LANGUAGE="JAVASCRIPT">
		function submitFunction ()
		{
			var formControl;
			var formVar = document.forms[0];
			var hasAnswer = false;
			var previousControl;
			var i = 0;
			
			previousControl = formVar.elements[i];
			formControl = formVar.elements[i];
			
			while (formControl != null)
			{
				if (formControl.type == "hidden")
				{
					if (formControl.value == "required")
					{
						if (hasAnswer == false)
						{
							alert ("Please complete all the information and click continue");
							previousControl.focus ();
							return false;
						}
						
						else
						{
							hasAnswer = false;
						}
					}
					
					else if (formControl.value == "notrequired")
					{
						hasAnswer = false;
					}
				}
				
				else if (formControl.type == "checkbox" || formControl.type == "radio")
				{
					previousControl = formControl;
					if (formControl.checked)
					{
						hasAnswer = true;
					}
				}

				else if (formControl.type == "text")
				{
					previousControl = formControl;
					if (formControl.value != "")
					{
						hasAnswer = true;
					}
				}

				else if (formControl.type.indexOf ("select") > - 1)
				{
					previousControl = formControl;
					if (formControl.options[formControl.selectedIndex].value != 0)
					{
						hasAnswer = true;
					}
				}
				
				i = i + 1;
				formControl = formVar.elements[i];
			}
			
			if (!validateEmail ())
				return false;
			
			if (!validatePostalCode ())
				return false;
		}
		
		function validateEmail ()
		{
			var formVar = document.forms[0];
			var email;
			var value;
			var i;
			var trimmedString;
			
			if (formVar != null)
			{
				email = formVar.email;
				
				if (email != null)
				{
					value = email.value;
					trimmedString = trimString (value);
					
					if (!checkemail(trimmedString))
					{
						alert ("The email address doesn't look quite right");
						email.focus ();
						return false;
					}
				}
			}
			
			return true;
		}
		
		



	function checkpostalcode(object_value)
    {
		if (object_value == null || object_value.length == 0)
        	return true;
		
	    if (object_value.length != 5 && object_value.length != 10)
	        return false;

		if (object_value.charAt(0) == "-" || object_value.charAt(0) == "+")
    	    return false;

		// make sure first 5 digits are a valid integer
		if (!checkinteger(object_value.substring(0,5)))
			return false;

		if (object_value.length == 5)
			return true;
	
		// check if separator is either a'-' or ' '
		if (object_value.charAt(5) != "-" && object_value.charAt(5) != " ")
        	return false;

		// check if last 4 digits are a valid integer
		if (object_value.charAt(6) == "-" || object_value.charAt(6) == "+")
    	    return false;

		return (checkinteger(object_value.substring(6,10)));
    }


		function validatePostalCode (postalCode)
		{
			var formVar = document.forms[0];
			var postalCode = null;
			
			if (formVar != null)
			{
				postalCode = formVar.postalcode;
				
				if (postalCode != null)
				{
					if (!checkpostalcode (postalCode.value))
					{
						alert ("The zip code does not look quite right");
						postalCode.focus();
						return false;
					}
				}
			}
			
			return true;
		}
		
		function popupWindow (questionID, vidID)
		{
			var location = 'whyPopup.cfm?q=' + questionID + '&vid=' + vidID;
			window.open (location, "why", "toolbar=no,location=no,directories=no,status=no,resizable=no,scrollbars=no,width=450,height=350");
		}
	</SCRIPT>





	
		 
<title>LYSOL&reg; &quot;Dream Come True&quot; Sweepstakes</title>
<link rel="stylesheet" href="/si/rb/skins/lysol_mb8~bronson/images/lysol.css" type="text/css">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
  <script language="JavaScript">
function popupRulesWindow ()
	{
		var location = '../rules.cfm?vid=206';
		window.open (location, "rules", "toolbar=no,location=no,directories=no,status=no,resizable=yes,scrollbars=yes,width=600,height=600");
	}  
  
function openWin(url, winName, w, h){
  var width = 410;
  var height = 250;
  if (arguments.length > 2) { width = w; }
  if (arguments.length > 3) { height = h; }
  var left = (screen.availWidth / 2) - (width / 2);
  var top = (screen.availHeight / 2) - (height / 2);
	window.open(url, winName,'toolbar=0,scrollbars=1,resizeable=0,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left);
}
</script>
</head>
<body bgcolor=ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="780"><img src="/si/rb/skins/lysol_mb8~bronson/images/header.gif" width="780" height="99"></td>
    <td background="/si/rb/skins/lysol_mb8~bronson/images/header_tile.gif" align="right"><img src="/si/rb/skins/lysol_mb8~bronson/images/header_right_edge.gif" width="5" height="99"></td>
  </tr>
</table>
<table width="780" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td valign="top" width="175"><img name="lysol_reg_r2_c1" src="/si/rb/skins/lysol_mb8~bronson/images/lysol_reg_r2_c1.gif" width="175" height="109" border="0" alt=""></td>
    <td valign="top" width="386"> 
      
      <img src="/si/rb/skins/lysol_mb8~bronson/images/fact_rotate.gif" width="386" height="49"> 
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="22"><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="1" height="10"></td>
          <td><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="1" height="10"></td>
        </tr>
        <tr> 
          <td width="22"><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="22" height="8"></td>
          <td> 
            <p class=lysol><b>What&#146;s your dream prize? </b>Win the &quot;Dream 
              Come True&quot; Sweepstakes presented by LYSOL&reg; and <b>Home</b>Solutions<b>News</b>&#153; Brands, 
              and a Mediterranean/Greek Isles Cruise for 2, or a BMW-325i Sedan, 
              or a trip to Disney World for four plus a $10,000 scholarship, or 
              a Ford Windstar LX, or $25,000 in cash or many other great prize 
              choices are yours to choose from.</p>
            <p class="lysol">Plus, you&#146;ll receive a FREE coupon worth <b>$1 
              OFF LYSOL&reg; Brand Products</b> just for entering! Print it right 
              from your computer and redeem it at your favorite neighborhood store.<br>
              <br>
            </p>
            </td>
        </tr>
      </table>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="10"><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="10" height="1"></td>
          <td> 
            <table width="100%" border="0" cellspacing="0" cellpadding="1">
              <tr> 
                <td bgcolor="015395"> 
                  <table width="100%" border="0" cellspacing="0" cellpadding="7">
                    <tr> 
                      <td bgcolor="bddeff"> 
                        <img src="/si/rb/skins/lysol_mb8~bronson/images/enter_to_win.gif" width="298" height="25"><br>
						<font size=1>Complete the form below to enter the sweepstakes and to print your FREE coupon.</font>

	  
	







	
		
		











	

	
	

	
		
		
	







		
		
		
		
		
	 
		

	







	<FORM ACTION="submit.cfm?YnE9MSZjPTEmY249MSZjdT0xJmY9MSZvPTE3ODQ4MDImclVSTD0lMkZzaSUyRnJiJTJGbHltYjglMkZwb3N0cmVnaXN0ZXIlMkVjZm0lM0Z0JTNEMiUyNm8lM0QxNzg0ODAyJTI2b20lM0Q0JTI2dmlkJTNEMjA2JTI2cyUzRDEwMDQ4MTMzNDElMjZtYiUzRDE5NTklMjZmd2ViJTNEMSUyNmNvJTNEMTg4JnM9MTAwNDgxMzM0MSZzbz0xJnQ9JTdCdHMlMjAlMjcyMDAyJTJEMDglMkQxMyUyMDEyJTNBNTElM0ExMyUyNyU3RCZ2aWQ9MjA2JnB0PTImY289MTg4" onsubmit="return submitFunction();" METHOD="POST" class="body">




<a name="form"></a><TABLE BORDER="0" CELLPADDING="5" WIDTH="100%">




	

	





	
	
	
	
	
		
	
		
	
		
	
		
			
				
		
				
					<TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			

			
		
	
		
	
		
	
		
			
		
	
		
		
		
			
		
		
			
				
					
					
				

				
				
				
				

				
					
				
			
				
			
				
					
					
					
				
		
				
			
				

				
			
				
					
				

				
				
				
			
				
					
						
							
						
					
					
					
				
		
				E-mail Address&nbsp;&nbsp;<INPUT TYPE="TEXT" NAME="email" VALUE="" MAXLENGTH="100" >&nbsp;
		
				
					<INPUT TYPE="HIDDEN" NAME="hiddenemail" VALUE="required">
				
			
		
	

	
	
	
	
	
		
	
		
	 	
	 		
		
			
		
	
		
	
		
			
				
		
				
					</TD></TR><TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			

			
		
	
		
	
		
	
		
			
		
	
		
		
		
			
		
		
			
				
					
					
				

				
				
				
				

				
					
				
			
				
			
				
					
				
		
				
			
				

				
			
				
					
				

				
				
				
			
				
					
					
				
		
				ZIP Code&nbsp;&nbsp;<INPUT TYPE="TEXT" NAME="postalcode" VALUE="" MAXLENGTH="100" >&nbsp;
		
				
					<INPUT TYPE="HIDDEN" NAME="hiddenpc" VALUE="required">
				
			
		
	

	
	
	
	
	
		
	
		
	 	
	 		
		
			
		
	
		
	
		
			
				
		
				
					</TD></TR><TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			

			
		
	
		
	
		
	
		
			
		
	
		
		
		
			
			

			
				
					
					
				

				
				
		
				
				
				
				
				
					<INPUT TYPE="HIDDEN" NAME="acountry" VALUE="United States">
				

				
					<INPUT TYPE="HIDDEN" NAME="hiddencompany" VALUE="notrequired">
				
			
		
	

	
	
	
	
	
		
	
		
	 	
	 		
		
			
		
	
		
	
		
			
				
		
				
					</TD></TR><TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			
		
			
		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
					
					
				
			
				
				
			
				
	
				
			
				
				
				
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
	
	
		
	
		
	
		
	
		
			
		
	
		
	
		
			
			
		

		
			
		

		
	
		
	
		
	
		
			
		
	
		
		
		
			
				
			
				
			
				
			
		
		
	

	
	
	
		
	
	
	
		
	
		
	 	
	 		
				
					
					<span class="blue">What brand of all-purpose-cleaner is used <U>most often</U> in your household?</span><BR><SELECT NAME="a4" ><OPTION VALUE="0">Choose One<OPTION VALUE="190|2094|0|1" >Mr. Clean® Multipurpose Cleaner<OPTION VALUE="190|2095|1|1" >Lysol® All Purpose Cleaner<OPTION VALUE="190|2096|2|1" >PineSol® All Purpose Cleaner<OPTION VALUE="190|2097|3|1" >Formula 409® All Purpose Cleaner<OPTION VALUE="190|2098|4|1" >Clorox® Brand Products<OPTION VALUE="190|2099|5|1" >Another brand<OPTION VALUE="190|2100|6|1" >All-purpose-cleaner not used<OPTION VALUE="190|2101|7|1" >I don't know</SELECT>
					
		
					
						
						<INPUT TYPE="HIDDEN" NAME="hidden4" VALUE="required">
					
				
		

			
		
			
		
	
		
	
		
			
				
		
				
					</TD></TR><TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			
		
			
		
	
		
	
		
	
		
			
		
	
		
		
		

			
	
			
				
				
				
				
				
				
				

				
					<INPUT TYPE="HIDDEN" NAME="OPTIN" VALUE="5">
				
			
				<TABLE BORDER="0" CELLSPACING="0">
		
				
					
				

				
	
				
					<TR><TD class="body">
				
		
				
				
				
				<INPUT TYPE="CHECKBOX" NAME="a5" VALUE="193|2114|1|1" CHECKED >&nbsp;Yes I'd like to sign up for <b>Home</b>Solutions<b>News</b>™ and receive money off coupons from <b>Lysol® Brand Products, Jet-Dry® Rinse Agent and Wizard® Air Care</b> plus terrific sweepstakes and tips!
		
				
			
		
		
	

	
	
	
	
	
		
	
		
	 	
	 		
				

				
					</TD></TR>
				
				</TABLE>
			
				
					<INPUT TYPE="HIDDEN" NAME="hidden5" VALUE="notrequired">
				
			
		
			
		
	
		
	
		
			
				
		
				
					</TD></TR><TR VALIGN="TOP"><TD VALIGN="TOP" class="body">
				
			
		
	
		
	
		
			
			
		

		
			
		

		
			
			
		
			
		
	
		
	
		
	
		
			
		
	
		
		
		

			
	
			
				
					
						
						
					
	
					
			
					

					<TABLE BORDER="0" CELLSPACING="0">
					<TR><TD COLSPAN="1" class="body">
					<span class="blue"></span>
					</TD></TR>
				
					
					
					
					
				
			
				
					
				
		
				
	
				
					<TR><TD class="body">
				
		
				
				
			
				<INPUT TYPE="CHECKBOX" NAME="a6" VALUE="225|2378|1|1" CHECKED >&nbsp;I confirm that I am 18 years of age or older.  (Coupons are available for residents of the U.S. 18 years old and older only.)
			
				
			
		
		
	
 


	

	
		</TD></TR>
	
	</TABLE>
	
	
		
		<INPUT TYPE="HIDDEN" NAME="hidden6" VALUE="required">
	





	</TD></TR>



<INPUT TYPE="HIDDEN" VALUE="4,6" NAME="ListOfRequireds">
<INPUT TYPE="HIDDEN" VALUE="6" NAME="MAXIVALUE">
<INPUT TYPE="HIDDEN" VALUE="English (US)" NAME="locale">
<INPUT TYPE="HIDDEN" VALUE="mm/dd/yyyy" NAME="dateformat">


	<INPUT TYPE="HIDDEN" VALUE="1" NAME="cu">


</TD></TR></TABLE><table><TR><TD VALIGN="MIDDLE" class="small"><INPUT TYPE=IMAGE src="/si/rb/skins/lysol_mb8~bronson/images/enter_to_win_and_print_btn.gif" ALT="" BORDER="0" ALIGN="absmiddle" /></td></tr><tr><td valign="top" class="small"><P>&nbsp;<img src="/si/rb/skins/lysol_mb8~bronson/images/lock.gif" alt="" border="0" align="absmiddle" />&nbsp;<span style="font-size:10px;">No purchase is required to enter or win. A purchase does not improve your chances of winning. Online entry open only to U.S. residents. U.S. and Canadian residents (only), regardless of age, may enter by mail. See official <a href="javascript:popupRulesWindow();">rules</a> for details, and to find out how to enter the Sweepstakes by mail.<p><a href="javascript:openWin('http://offers.brightstreet.com/si/rb/lymb8/privacy.cfm')">Click here</A> to learn about our privacy policy.  Coupons are available for residents of the U.S. that are 18 years old and older only. Receipt of coupon or offer requires acceptance of security software which must be downloaded and installed on your system. By clicking the &quot;Enter Sweepstakes & Print Your Coupon!&quot; button you agree to the <a href="javascript:openWin('http://offers.brightstreet.com/si/rb/lymb8/terms.cfm')">terms and conditions</a> of this site.</table></TD></TR></TABLE>

</FORM>




	
		
<!--</td>
                    </tr>
                  </table>-->
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
    <td valign="top" width="219"><img name="lysol_reg_r2_c3" src="/si/rb/skins/lysol_mb8~bronson/images/lysol_reg_r2_c3.gif" width="219" height="197" border="0" alt=""><img name="lysol_reg_r4_c3" src="/si/rb/skins/lysol_mb8~bronson/images/lysol_reg_r4_c3.gif" width="219" height="232" border="0" alt=""></td>
  </tr>
  <tr> 
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr align="center"> 
    <td colspan="3"> 
      <table width="75%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td colspan="3" bgcolor="015395"><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="1" height="1"></td>
        </tr>
        <tr> 
          <td colspan="3"><img src="/si/rb/skins/lysol_mb8~bronson/images/spacer.gif" width="1" height="4"></td>
        </tr>
        <tr> 
          <td nowrap class="lysol" valign="top">&copy;2001-2002 Reckitt Benckiser, Inc. All rights reserved.</td>
          <td>&nbsp;</td>
          <td align="right"><img src="/si/rb/skins/lysol_mb8~bronson/images/e_powered_by100x25.gif" width="100" height="25"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</body>






	






                 reply	other threads:[~2002-11-17 18:04 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200211180159.gAI1xJh111488@logs-mtc-tf.proxy.aol.com \
    --to=nameless@e-mail.ru \
    --cc=guile-emacs@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).