You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-dev@james.apache.org by rd...@apache.org on 2008/12/01 23:33:14 UTC

svn commit: r722268 [4/11] - in /james/site/trunk/www/jsieve: ./ mailet/ mailet/apidocs/ mailet/apidocs/org/apache/jsieve/mailet/ mailet/apidocs/org/apache/jsieve/mailet/class-use/ mailet/xref/org/apache/jsieve/mailet/ main/ main/apidocs/ main/apidocs/...

Modified: james/site/trunk/www/jsieve/mailet/xref/org/apache/jsieve/mailet/SieveMailboxMailet.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/mailet/xref/org/apache/jsieve/mailet/SieveMailboxMailet.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/mailet/xref/org/apache/jsieve/mailet/SieveMailboxMailet.html (original)
+++ james/site/trunk/www/jsieve/mailet/xref/org/apache/jsieve/mailet/SieveMailboxMailet.html Mon Dec  1 14:33:02 2008
@@ -53,252 +53,236 @@
 <a name="43" href="#43">43</a>  <strong class="jxr_keyword">import</strong> org.apache.mailet.base.RFC2822Headers;
 <a name="44" href="#44">44</a>  
 <a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> * Receives a Mail from JamesSpoolManager and takes care of delivery of the</em>
-<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * message to local inboxes or a specific repository.</em>
-<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment"> * Differently from LocalDelivery this does not lookup the UserRepository This</em>
-<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment"> * simply store the message in a repository named like the local part of the</em>
-<a name="51" href="#51">51</a>  <em class="jxr_javadoccomment"> * recipient address.</em>
-<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment"> * If no repository is specified then this fallback to MailServer.getUserInbox.</em>
-<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment"> * Otherwise you can add your own configuration for the repository</em>
-<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment"> * e.g: &lt;repositoryUrl&gt;file://var/spool/userspools/&lt;/repositoryUrl&gt;</em>
-<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment"> * &lt;repositoryType&gt;SPOOL&lt;/repositoryType&gt;</em>
-<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment"> * &lt;repositoryUrl&gt;file://var/mail/inboxes/&lt;/repositoryUrl&gt; &lt;repositoryType&gt;MAIL&lt;/repositoryType&gt;</em>
-<a name="60" href="#60">60</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment"> * Header "Delivered-To" can be added to every message adding the</em>
-<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment"> * &lt;addDeliveryHeader&gt;Delivered-To&lt;/addDeliveryHeader&gt;</em>
-<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="64" href="#64">64</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="65" href="#65">65</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a> <strong class="jxr_keyword">extends</strong> GenericMailet {
-<a name="66" href="#66">66</a>  
-<a name="67" href="#67">67</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="68" href="#68">68</a>  <em class="jxr_javadoccomment">     * The delivery header</em>
-<a name="69" href="#69">69</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="70" href="#70">70</a>      <strong class="jxr_keyword">private</strong> String deliveryHeader;
-<a name="71" href="#71">71</a>  
-<a name="72" href="#72">72</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     * resetReturnPath</em>
-<a name="74" href="#74">74</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="75" href="#75">75</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> resetReturnPath;
-<a name="76" href="#76">76</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Experimental */</em>
-<a name="77" href="#77">77</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster;
-<a name="78" href="#78">78</a>      
-<a name="79" href="#79">79</a>      <strong class="jxr_keyword">private</strong> SieveFactory factory;
-<a name="80" href="#80">80</a>  
-<a name="81" href="#81">81</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="82" href="#82">82</a>  <em class="jxr_javadoccomment">     * For SDI</em>
-<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="84" href="#84">84</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a>() {}
-<a name="85" href="#85">85</a>      
-<a name="86" href="#86">86</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     * CDI</em>
-<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * @param poster not null</em>
-<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="90" href="#90">90</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a>(<a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster) {
-<a name="91" href="#91">91</a>          <strong class="jxr_keyword">this</strong>();
-<a name="92" href="#92">92</a>          <strong class="jxr_keyword">this</strong>.poster = poster;
-<a name="93" href="#93">93</a>      }
-<a name="94" href="#94">94</a>  
-<a name="95" href="#95">95</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> getPoster() {
-<a name="96" href="#96">96</a>          <strong class="jxr_keyword">return</strong> poster;
-<a name="97" href="#97">97</a>      }
-<a name="98" href="#98">98</a>      
-<a name="99" href="#99">99</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     * For SDI</em>
-<a name="101" href="#101">101</a> <em class="jxr_javadoccomment">     * @param poster not null</em>
-<a name="102" href="#102">102</a> <em class="jxr_javadoccomment">     */</em>
-<a name="103" href="#103">103</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">void</strong> setPoster(<a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster) {
-<a name="104" href="#104">104</a>         <strong class="jxr_keyword">this</strong>.poster = poster;
-<a name="105" href="#105">105</a>     }
-<a name="106" href="#106">106</a> 
-<a name="107" href="#107">107</a>     
-<a name="108" href="#108">108</a>     <em class="jxr_comment">//@Override</em>
-<a name="109" href="#109">109</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> init(MailetConfig config) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="110" href="#110">110</a>         
-<a name="111" href="#111">111</a>         <strong class="jxr_keyword">super</strong>.init(config);
-<a name="112" href="#112">112</a>         <strong class="jxr_keyword">try</strong> {
-<a name="113" href="#113">113</a>             factory = <strong class="jxr_keyword">new</strong> ConfigurationManager().build();
-<a name="114" href="#114">114</a>         } <strong class="jxr_keyword">catch</strong> (SieveConfigurationException e) {
-<a name="115" href="#115">115</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> MessagingException(<span class="jxr_string">"Failed to load standard Sieve configuration."</span>, e);
-<a name="116" href="#116">116</a>         }
-<a name="117" href="#117">117</a>     }
-<a name="118" href="#118">118</a> 
-<a name="119" href="#119">119</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="120" href="#120">120</a> <em class="jxr_javadoccomment">     * Delivers a mail to a local mailbox.</em>
-<a name="121" href="#121">121</a> <em class="jxr_javadoccomment">     * </em>
-<a name="122" href="#122">122</a> <em class="jxr_javadoccomment">     * @param mail</em>
-<a name="123" href="#123">123</a> <em class="jxr_javadoccomment">     *            the mail being processed</em>
-<a name="124" href="#124">124</a> <em class="jxr_javadoccomment">     * </em>
-<a name="125" href="#125">125</a> <em class="jxr_javadoccomment">     * @throws MessagingException</em>
-<a name="126" href="#126">126</a> <em class="jxr_javadoccomment">     *             if an error occurs while storing the mail</em>
-<a name="127" href="#127">127</a> <em class="jxr_javadoccomment">     */</em>
-<a name="128" href="#128">128</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> service(Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="129" href="#129">129</a>         Collection recipients = mail.getRecipients();
-<a name="130" href="#130">130</a>         Collection errors = <strong class="jxr_keyword">new</strong> Vector();
-<a name="131" href="#131">131</a> 
-<a name="132" href="#132">132</a>         MimeMessage message = <strong class="jxr_keyword">null</strong>;
-<a name="133" href="#133">133</a>         <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong> || resetReturnPath) {
-<a name="134" href="#134">134</a>             message = mail.getMessage();
-<a name="135" href="#135">135</a>         }
-<a name="136" href="#136">136</a> 
-<a name="137" href="#137">137</a>         <strong class="jxr_keyword">if</strong> (resetReturnPath) {
-<a name="138" href="#138">138</a>             <em class="jxr_comment">// Set Return-Path and remove all other Return-Path headers from the</em>
-<a name="139" href="#139">139</a>             <em class="jxr_comment">// message</em>
-<a name="140" href="#140">140</a>             <em class="jxr_comment">// This only works because there is a placeholder inserted by</em>
-<a name="141" href="#141">141</a>             <em class="jxr_comment">// MimeMessageWrapper</em>
-<a name="142" href="#142">142</a>             message.setHeader(RFC2822Headers.RETURN_PATH,
-<a name="143" href="#143">143</a>                     (mail.getSender() == <strong class="jxr_keyword">null</strong> ? <span class="jxr_string">"&lt;&gt;"</span> : <span class="jxr_string">"&lt;"</span> + mail.getSender()
-<a name="144" href="#144">144</a>                             + <span class="jxr_string">"&gt;"</span>));
-<a name="145" href="#145">145</a>         }
-<a name="146" href="#146">146</a> 
-<a name="147" href="#147">147</a>         Enumeration headers;
-<a name="148" href="#148">148</a>         InternetHeaders deliveredTo = <strong class="jxr_keyword">new</strong> InternetHeaders();
-<a name="149" href="#149">149</a>         <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
-<a name="150" href="#150">150</a>             <em class="jxr_comment">// Copy any Delivered-To headers from the message</em>
-<a name="151" href="#151">151</a>             headers = message
-<a name="152" href="#152">152</a>                     .getMatchingHeaders(<strong class="jxr_keyword">new</strong> String[] { deliveryHeader });
-<a name="153" href="#153">153</a>             <strong class="jxr_keyword">while</strong> (headers.hasMoreElements()) {
-<a name="154" href="#154">154</a>                 Header header = (Header) headers.nextElement();
-<a name="155" href="#155">155</a>                 deliveredTo.addHeader(header.getName(), header.getValue());
-<a name="156" href="#156">156</a>             }
-<a name="157" href="#157">157</a>         }
-<a name="158" href="#158">158</a> 
-<a name="159" href="#159">159</a>         <strong class="jxr_keyword">for</strong> (Iterator i = recipients.iterator(); i.hasNext();) {
-<a name="160" href="#160">160</a>             MailAddress recipient = (MailAddress) i.next();
-<a name="161" href="#161">161</a>             <strong class="jxr_keyword">try</strong> {
-<a name="162" href="#162">162</a>                 <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
-<a name="163" href="#163">163</a>                     <em class="jxr_comment">// Add qmail's de facto standard Delivered-To header</em>
-<a name="164" href="#164">164</a>                     message.addHeader(deliveryHeader, recipient.toString());
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> * Executes a &lt;a href='<a href="http://www.rfc-editor.org/rfc/rfc3028.txt'&gt;Sieve&lt;/a&gt;" target="alexandria_uri">http://www.rfc-editor.org/rfc/rfc3028.txt'&gt;Sieve&lt;/a&gt;</a></em>
+<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * script against incoming mail. The script applied is based on the recipient.</em>
+<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="49" href="#49">49</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a> <strong class="jxr_keyword">extends</strong> GenericMailet {
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment">     * The delivery header</em>
+<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="54" href="#54">54</a>      <strong class="jxr_keyword">private</strong> String deliveryHeader;
+<a name="55" href="#55">55</a>  
+<a name="56" href="#56">56</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment">     * resetReturnPath</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="59" href="#59">59</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> resetReturnPath;
+<a name="60" href="#60">60</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Experimental */</em>
+<a name="61" href="#61">61</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster;
+<a name="62" href="#62">62</a>      
+<a name="63" href="#63">63</a>      <strong class="jxr_keyword">private</strong> SieveFactory factory;
+<a name="64" href="#64">64</a>  
+<a name="65" href="#65">65</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="66" href="#66">66</a>  <em class="jxr_javadoccomment">     * For SDI</em>
+<a name="67" href="#67">67</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="68" href="#68">68</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a>() {}
+<a name="69" href="#69">69</a>      
+<a name="70" href="#70">70</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="71" href="#71">71</a>  <em class="jxr_javadoccomment">     * CDI</em>
+<a name="72" href="#72">72</a>  <em class="jxr_javadoccomment">     * @param poster not null</em>
+<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="74" href="#74">74</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailboxMailet.html">SieveMailboxMailet</a>(<a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster) {
+<a name="75" href="#75">75</a>          <strong class="jxr_keyword">this</strong>();
+<a name="76" href="#76">76</a>          <strong class="jxr_keyword">this</strong>.poster = poster;
+<a name="77" href="#77">77</a>      }
+<a name="78" href="#78">78</a>  
+<a name="79" href="#79">79</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> getPoster() {
+<a name="80" href="#80">80</a>          <strong class="jxr_keyword">return</strong> poster;
+<a name="81" href="#81">81</a>      }
+<a name="82" href="#82">82</a>      
+<a name="83" href="#83">83</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     * For SDI</em>
+<a name="85" href="#85">85</a>  <em class="jxr_javadoccomment">     * @param poster not null</em>
+<a name="86" href="#86">86</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="87" href="#87">87</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">void</strong> setPoster(<a href="../../../../org/apache/jsieve/mailet/Poster.html">Poster</a> poster) {
+<a name="88" href="#88">88</a>          <strong class="jxr_keyword">this</strong>.poster = poster;
+<a name="89" href="#89">89</a>      }
+<a name="90" href="#90">90</a>  
+<a name="91" href="#91">91</a>      
+<a name="92" href="#92">92</a>      <em class="jxr_comment">//@Override</em>
+<a name="93" href="#93">93</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> init(MailetConfig config) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="94" href="#94">94</a>          
+<a name="95" href="#95">95</a>          <strong class="jxr_keyword">super</strong>.init(config);
+<a name="96" href="#96">96</a>          <strong class="jxr_keyword">try</strong> {
+<a name="97" href="#97">97</a>              factory = <strong class="jxr_keyword">new</strong> ConfigurationManager().build();
+<a name="98" href="#98">98</a>          } <strong class="jxr_keyword">catch</strong> (SieveConfigurationException e) {
+<a name="99" href="#99">99</a>              <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> MessagingException(<span class="jxr_string">"Failed to load standard Sieve configuration."</span>, e);
+<a name="100" href="#100">100</a>         }
+<a name="101" href="#101">101</a>     }
+<a name="102" href="#102">102</a> 
+<a name="103" href="#103">103</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="104" href="#104">104</a> <em class="jxr_javadoccomment">     * Delivers a mail to a local mailbox.</em>
+<a name="105" href="#105">105</a> <em class="jxr_javadoccomment">     * </em>
+<a name="106" href="#106">106</a> <em class="jxr_javadoccomment">     * @param mail</em>
+<a name="107" href="#107">107</a> <em class="jxr_javadoccomment">     *            the mail being processed</em>
+<a name="108" href="#108">108</a> <em class="jxr_javadoccomment">     * </em>
+<a name="109" href="#109">109</a> <em class="jxr_javadoccomment">     * @throws MessagingException</em>
+<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     *             if an error occurs while storing the mail</em>
+<a name="111" href="#111">111</a> <em class="jxr_javadoccomment">     */</em>
+<a name="112" href="#112">112</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> service(Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="113" href="#113">113</a>         Collection recipients = mail.getRecipients();
+<a name="114" href="#114">114</a>         Collection errors = <strong class="jxr_keyword">new</strong> Vector();
+<a name="115" href="#115">115</a> 
+<a name="116" href="#116">116</a>         MimeMessage message = <strong class="jxr_keyword">null</strong>;
+<a name="117" href="#117">117</a>         <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong> || resetReturnPath) {
+<a name="118" href="#118">118</a>             message = mail.getMessage();
+<a name="119" href="#119">119</a>         }
+<a name="120" href="#120">120</a> 
+<a name="121" href="#121">121</a>         <strong class="jxr_keyword">if</strong> (resetReturnPath) {
+<a name="122" href="#122">122</a>             <em class="jxr_comment">// Set Return-Path and remove all other Return-Path headers from the</em>
+<a name="123" href="#123">123</a>             <em class="jxr_comment">// message</em>
+<a name="124" href="#124">124</a>             <em class="jxr_comment">// This only works because there is a placeholder inserted by</em>
+<a name="125" href="#125">125</a>             <em class="jxr_comment">// MimeMessageWrapper</em>
+<a name="126" href="#126">126</a>             message.setHeader(RFC2822Headers.RETURN_PATH,
+<a name="127" href="#127">127</a>                     (mail.getSender() == <strong class="jxr_keyword">null</strong> ? <span class="jxr_string">"&lt;&gt;"</span> : <span class="jxr_string">"&lt;"</span> + mail.getSender()
+<a name="128" href="#128">128</a>                             + <span class="jxr_string">"&gt;"</span>));
+<a name="129" href="#129">129</a>         }
+<a name="130" href="#130">130</a> 
+<a name="131" href="#131">131</a>         Enumeration headers;
+<a name="132" href="#132">132</a>         InternetHeaders deliveredTo = <strong class="jxr_keyword">new</strong> InternetHeaders();
+<a name="133" href="#133">133</a>         <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
+<a name="134" href="#134">134</a>             <em class="jxr_comment">// Copy any Delivered-To headers from the message</em>
+<a name="135" href="#135">135</a>             headers = message
+<a name="136" href="#136">136</a>                     .getMatchingHeaders(<strong class="jxr_keyword">new</strong> String[] { deliveryHeader });
+<a name="137" href="#137">137</a>             <strong class="jxr_keyword">while</strong> (headers.hasMoreElements()) {
+<a name="138" href="#138">138</a>                 Header header = (Header) headers.nextElement();
+<a name="139" href="#139">139</a>                 deliveredTo.addHeader(header.getName(), header.getValue());
+<a name="140" href="#140">140</a>             }
+<a name="141" href="#141">141</a>         }
+<a name="142" href="#142">142</a> 
+<a name="143" href="#143">143</a>         <strong class="jxr_keyword">for</strong> (Iterator i = recipients.iterator(); i.hasNext();) {
+<a name="144" href="#144">144</a>             MailAddress recipient = (MailAddress) i.next();
+<a name="145" href="#145">145</a>             <strong class="jxr_keyword">try</strong> {
+<a name="146" href="#146">146</a>                 <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
+<a name="147" href="#147">147</a>                     <em class="jxr_comment">// Add qmail's de facto standard Delivered-To header</em>
+<a name="148" href="#148">148</a>                     message.addHeader(deliveryHeader, recipient.toString());
+<a name="149" href="#149">149</a>                 }
+<a name="150" href="#150">150</a> 
+<a name="151" href="#151">151</a>                 storeMail(mail.getSender(), recipient, mail);
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a>                 <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
+<a name="154" href="#154">154</a>                     <strong class="jxr_keyword">if</strong> (i.hasNext()) {
+<a name="155" href="#155">155</a>                         <em class="jxr_comment">// Remove headers but leave all placeholders</em>
+<a name="156" href="#156">156</a>                         message.removeHeader(deliveryHeader);
+<a name="157" href="#157">157</a>                         headers = deliveredTo.getAllHeaders();
+<a name="158" href="#158">158</a>                         <em class="jxr_comment">// And restore any original Delivered-To headers</em>
+<a name="159" href="#159">159</a>                         <strong class="jxr_keyword">while</strong> (headers.hasMoreElements()) {
+<a name="160" href="#160">160</a>                             Header header = (Header) headers.nextElement();
+<a name="161" href="#161">161</a>                             message.addHeader(header.getName(), header
+<a name="162" href="#162">162</a>                                     .getValue());
+<a name="163" href="#163">163</a>                         }
+<a name="164" href="#164">164</a>                     }
 <a name="165" href="#165">165</a>                 }
-<a name="166" href="#166">166</a> 
-<a name="167" href="#167">167</a>                 storeMail(mail.getSender(), recipient, mail);
-<a name="168" href="#168">168</a> 
-<a name="169" href="#169">169</a>                 <strong class="jxr_keyword">if</strong> (deliveryHeader != <strong class="jxr_keyword">null</strong>) {
-<a name="170" href="#170">170</a>                     <strong class="jxr_keyword">if</strong> (i.hasNext()) {
-<a name="171" href="#171">171</a>                         <em class="jxr_comment">// Remove headers but leave all placeholders</em>
-<a name="172" href="#172">172</a>                         message.removeHeader(deliveryHeader);
-<a name="173" href="#173">173</a>                         headers = deliveredTo.getAllHeaders();
-<a name="174" href="#174">174</a>                         <em class="jxr_comment">// And restore any original Delivered-To headers</em>
-<a name="175" href="#175">175</a>                         <strong class="jxr_keyword">while</strong> (headers.hasMoreElements()) {
-<a name="176" href="#176">176</a>                             Header header = (Header) headers.nextElement();
-<a name="177" href="#177">177</a>                             message.addHeader(header.getName(), header
-<a name="178" href="#178">178</a>                                     .getValue());
-<a name="179" href="#179">179</a>                         }
-<a name="180" href="#180">180</a>                     }
-<a name="181" href="#181">181</a>                 }
-<a name="182" href="#182">182</a>             } <strong class="jxr_keyword">catch</strong> (Exception ex) {
-<a name="183" href="#183">183</a>                 getMailetContext().log(<span class="jxr_string">"Error while storing mail."</span>, ex);
-<a name="184" href="#184">184</a>                 errors.add(recipient);
-<a name="185" href="#185">185</a>             }
-<a name="186" href="#186">186</a>         }
-<a name="187" href="#187">187</a> 
-<a name="188" href="#188">188</a>         <strong class="jxr_keyword">if</strong> (!errors.isEmpty()) {
-<a name="189" href="#189">189</a>             <em class="jxr_comment">// If there were errors, we redirect the email to the ERROR</em>
-<a name="190" href="#190">190</a>             <em class="jxr_comment">// processor.</em>
-<a name="191" href="#191">191</a>             <em class="jxr_comment">// In order for this server to meet the requirements of the SMTP</em>
-<a name="192" href="#192">192</a>             <em class="jxr_comment">// specification, mails on the ERROR processor must be returned to</em>
-<a name="193" href="#193">193</a>             <em class="jxr_comment">// the sender. Note that this email doesn't include any details</em>
-<a name="194" href="#194">194</a>             <em class="jxr_comment">// regarding the details of the failure(s).</em>
-<a name="195" href="#195">195</a>             <em class="jxr_comment">// In the future we may wish to address this.</em>
-<a name="196" href="#196">196</a>             getMailetContext().sendMail(mail.getSender(), errors,
-<a name="197" href="#197">197</a>                     mail.getMessage(), Mail.ERROR);
-<a name="198" href="#198">198</a>         }
-<a name="199" href="#199">199</a>         <em class="jxr_comment">// We always consume this message</em>
-<a name="200" href="#200">200</a>         mail.setState(Mail.GHOST);
-<a name="201" href="#201">201</a>     }
-<a name="202" href="#202">202</a> 
-<a name="203" href="#203">203</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="204" href="#204">204</a> <em class="jxr_javadoccomment">     * Return a string describing this mailet.</em>
-<a name="205" href="#205">205</a> <em class="jxr_javadoccomment">     * </em>
-<a name="206" href="#206">206</a> <em class="jxr_javadoccomment">     * @return a string describing this mailet</em>
-<a name="207" href="#207">207</a> <em class="jxr_javadoccomment">     */</em>
-<a name="208" href="#208">208</a>     <strong class="jxr_keyword">public</strong> String getMailetInfo() {
-<a name="209" href="#209">209</a>         <strong class="jxr_keyword">return</strong> <span class="jxr_string">"ToMultiMailbox Mailet"</span>;
-<a name="210" href="#210">210</a>     }
-<a name="211" href="#211">211</a> 
-<a name="212" href="#212">212</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="213" href="#213">213</a> <em class="jxr_javadoccomment">     * </em>
-<a name="214" href="#214">214</a> <em class="jxr_javadoccomment">     * @param sender</em>
-<a name="215" href="#215">215</a> <em class="jxr_javadoccomment">     * @param recipient</em>
-<a name="216" href="#216">216</a> <em class="jxr_javadoccomment">     * @param mail</em>
-<a name="217" href="#217">217</a> <em class="jxr_javadoccomment">     * @throws MessagingException</em>
-<a name="218" href="#218">218</a> <em class="jxr_javadoccomment">     */</em>
-<a name="219" href="#219">219</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> storeMail(MailAddress sender, MailAddress recipient,
-<a name="220" href="#220">220</a>             Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="221" href="#221">221</a>         String username;
-<a name="222" href="#222">222</a>         <strong class="jxr_keyword">if</strong> (recipient == <strong class="jxr_keyword">null</strong>) {
-<a name="223" href="#223">223</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
-<a name="224" href="#224">224</a>                     <span class="jxr_string">"Recipient for mail to be spooled cannot be null."</span>);
-<a name="225" href="#225">225</a>         }
-<a name="226" href="#226">226</a>         <strong class="jxr_keyword">if</strong> (mail.getMessage() == <strong class="jxr_keyword">null</strong>) {
-<a name="227" href="#227">227</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
-<a name="228" href="#228">228</a>                     <span class="jxr_string">"Mail message to be spooled cannot be null."</span>);
+<a name="166" href="#166">166</a>             } <strong class="jxr_keyword">catch</strong> (Exception ex) {
+<a name="167" href="#167">167</a>                 getMailetContext().log(<span class="jxr_string">"Error while storing mail."</span>, ex);
+<a name="168" href="#168">168</a>                 errors.add(recipient);
+<a name="169" href="#169">169</a>             }
+<a name="170" href="#170">170</a>         }
+<a name="171" href="#171">171</a> 
+<a name="172" href="#172">172</a>         <strong class="jxr_keyword">if</strong> (!errors.isEmpty()) {
+<a name="173" href="#173">173</a>             <em class="jxr_comment">// If there were errors, we redirect the email to the ERROR</em>
+<a name="174" href="#174">174</a>             <em class="jxr_comment">// processor.</em>
+<a name="175" href="#175">175</a>             <em class="jxr_comment">// In order for this server to meet the requirements of the SMTP</em>
+<a name="176" href="#176">176</a>             <em class="jxr_comment">// specification, mails on the ERROR processor must be returned to</em>
+<a name="177" href="#177">177</a>             <em class="jxr_comment">// the sender. Note that this email doesn't include any details</em>
+<a name="178" href="#178">178</a>             <em class="jxr_comment">// regarding the details of the failure(s).</em>
+<a name="179" href="#179">179</a>             <em class="jxr_comment">// In the future we may wish to address this.</em>
+<a name="180" href="#180">180</a>             getMailetContext().sendMail(mail.getSender(), errors,
+<a name="181" href="#181">181</a>                     mail.getMessage(), Mail.ERROR);
+<a name="182" href="#182">182</a>         }
+<a name="183" href="#183">183</a>         <em class="jxr_comment">// We always consume this message</em>
+<a name="184" href="#184">184</a>         mail.setState(Mail.GHOST);
+<a name="185" href="#185">185</a>     }
+<a name="186" href="#186">186</a> 
+<a name="187" href="#187">187</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="188" href="#188">188</a> <em class="jxr_javadoccomment">     * Return a string describing this mailet.</em>
+<a name="189" href="#189">189</a> <em class="jxr_javadoccomment">     * </em>
+<a name="190" href="#190">190</a> <em class="jxr_javadoccomment">     * @return a string describing this mailet</em>
+<a name="191" href="#191">191</a> <em class="jxr_javadoccomment">     */</em>
+<a name="192" href="#192">192</a>     <strong class="jxr_keyword">public</strong> String getMailetInfo() {
+<a name="193" href="#193">193</a>         <strong class="jxr_keyword">return</strong> <span class="jxr_string">"Sieve Mailbox Mailet"</span>;
+<a name="194" href="#194">194</a>     }
+<a name="195" href="#195">195</a> 
+<a name="196" href="#196">196</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="197" href="#197">197</a> <em class="jxr_javadoccomment">     * </em>
+<a name="198" href="#198">198</a> <em class="jxr_javadoccomment">     * @param sender</em>
+<a name="199" href="#199">199</a> <em class="jxr_javadoccomment">     * @param recipient</em>
+<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     * @param mail</em>
+<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     * @throws MessagingException</em>
+<a name="202" href="#202">202</a> <em class="jxr_javadoccomment">     */</em>
+<a name="203" href="#203">203</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> storeMail(MailAddress sender, MailAddress recipient,
+<a name="204" href="#204">204</a>             Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="205" href="#205">205</a>         String username;
+<a name="206" href="#206">206</a>         <strong class="jxr_keyword">if</strong> (recipient == <strong class="jxr_keyword">null</strong>) {
+<a name="207" href="#207">207</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
+<a name="208" href="#208">208</a>                     <span class="jxr_string">"Recipient for mail to be spooled cannot be null."</span>);
+<a name="209" href="#209">209</a>         }
+<a name="210" href="#210">210</a>         <strong class="jxr_keyword">if</strong> (mail.getMessage() == <strong class="jxr_keyword">null</strong>) {
+<a name="211" href="#211">211</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
+<a name="212" href="#212">212</a>                     <span class="jxr_string">"Mail message to be spooled cannot be null."</span>);
+<a name="213" href="#213">213</a>         }
+<a name="214" href="#214">214</a>         <em class="jxr_comment">// recipient.toString was used here (JD)</em>
+<a name="215" href="#215">215</a>         username = recipient.getUser();
+<a name="216" href="#216">216</a>         
+<a name="217" href="#217">217</a>         storeMessage(username, mail);
+<a name="218" href="#218">218</a>  
+<a name="219" href="#219">219</a>     }
+<a name="220" href="#220">220</a>     
+<a name="221" href="#221">221</a>     <strong class="jxr_keyword">void</strong> storeMessage(String username, Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="222" href="#222">222</a>         String sieveFileName=<span class="jxr_string">"../apps/james/var/sieve/"</span>+username+<span class="jxr_string">".sieve"</span>;
+<a name="223" href="#223">223</a>         <strong class="jxr_keyword">if</strong> (<strong class="jxr_keyword">new</strong> File(sieveFileName).canRead()) {
+<a name="224" href="#224">224</a>             getMailetContext().log(<span class="jxr_string">"Passing over to sieve delivery for "</span>+username);
+<a name="225" href="#225">225</a>             storeMessageSieve(sieveFileName, username, mail);
+<a name="226" href="#226">226</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="227" href="#227">227</a>             getMailetContext().log(<strong class="jxr_keyword">new</strong> File(sieveFileName).getAbsolutePath()+ <span class="jxr_string">" does not exists"</span>);
+<a name="228" href="#228">228</a>             storeMessageInbox(username, mail);
 <a name="229" href="#229">229</a>         }
-<a name="230" href="#230">230</a>         <em class="jxr_comment">// recipient.toString was used here (JD)</em>
-<a name="231" href="#231">231</a>         username = recipient.getUser();
-<a name="232" href="#232">232</a>         
-<a name="233" href="#233">233</a>         storeMessage(username, mail);
-<a name="234" href="#234">234</a>  
-<a name="235" href="#235">235</a>     }
-<a name="236" href="#236">236</a>     
-<a name="237" href="#237">237</a>     <strong class="jxr_keyword">void</strong> storeMessage(String username, Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="238" href="#238">238</a>         String sieveFileName=<span class="jxr_string">"../apps/james/var/sieve/"</span>+username+<span class="jxr_string">".sieve"</span>;
-<a name="239" href="#239">239</a>         <strong class="jxr_keyword">if</strong> (<strong class="jxr_keyword">new</strong> File(sieveFileName).canRead()) {
-<a name="240" href="#240">240</a>             getMailetContext().log(<span class="jxr_string">"Passing over to sieve delivery for "</span>+username);
-<a name="241" href="#241">241</a>             storeMessageSieve(sieveFileName, username, mail);
-<a name="242" href="#242">242</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="243" href="#243">243</a>             getMailetContext().log(<strong class="jxr_keyword">new</strong> File(sieveFileName).getAbsolutePath()+ <span class="jxr_string">" does not exists"</span>);
-<a name="244" href="#244">244</a>             storeMessageInbox(username, mail);
-<a name="245" href="#245">245</a>         }
-<a name="246" href="#246">246</a>     }
-<a name="247" href="#247">247</a>     
-<a name="248" href="#248">248</a>     <strong class="jxr_keyword">void</strong> storeMessageSieve(String sieveFileName, String username, Mail aMail) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="249" href="#249">249</a>         <em class="jxr_comment">// Evaluate the script against the mail</em>
-<a name="250" href="#250">250</a>         <strong class="jxr_keyword">try</strong>
-<a name="251" href="#251">251</a>         {
-<a name="252" href="#252">252</a>             MailAdapter aMailAdapter = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailAdapter.html">SieveMailAdapter</a>(aMail,
-<a name="253" href="#253">253</a>                     getMailetContext());
-<a name="254" href="#254">254</a>             log(<span class="jxr_string">"Evaluating "</span> + aMailAdapter.toString() + <span class="jxr_string">"against \&quot;"</span>
-<a name="255" href="#255">255</a>                     + sieveFileName + <span class="jxr_string">"\&quot;"</span>);
-<a name="256" href="#256">256</a>             factory.evaluate(aMailAdapter,
-<a name="257" href="#257">257</a>                     factory.parse(<strong class="jxr_keyword">new</strong> FileInputStream(sieveFileName)));
-<a name="258" href="#258">258</a>         }
-<a name="259" href="#259">259</a>         <strong class="jxr_keyword">catch</strong> (Exception ex)
-<a name="260" href="#260">260</a>         {
-<a name="261" href="#261">261</a>             <em class="jxr_comment">//</em>
-<a name="262" href="#262">262</a>             <em class="jxr_comment">// SLIEVE is a mail filtering protocol.</em>
-<a name="263" href="#263">263</a>             <em class="jxr_comment">// Rejecting the mail because it cannot be filtered</em>
-<a name="264" href="#264">264</a>             <em class="jxr_comment">// seems very unfriendly.</em>
-<a name="265" href="#265">265</a>             <em class="jxr_comment">// So just log and store in INBOX.</em>
-<a name="266" href="#266">266</a>             <em class="jxr_comment">//</em>
-<a name="267" href="#267">267</a>             log(<span class="jxr_string">"Cannot evaluate Sieve script. Storing mail in user INBOX."</span>, ex);
-<a name="268" href="#268">268</a>             storeMessageInbox(username, aMail);
+<a name="230" href="#230">230</a>     }
+<a name="231" href="#231">231</a>     
+<a name="232" href="#232">232</a>     <strong class="jxr_keyword">void</strong> storeMessageSieve(String sieveFileName, String username, Mail aMail) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="233" href="#233">233</a>         <em class="jxr_comment">// Evaluate the script against the mail</em>
+<a name="234" href="#234">234</a>         <strong class="jxr_keyword">try</strong>
+<a name="235" href="#235">235</a>         {
+<a name="236" href="#236">236</a>             MailAdapter aMailAdapter = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/jsieve/mailet/SieveMailAdapter.html">SieveMailAdapter</a>(aMail,
+<a name="237" href="#237">237</a>                     getMailetContext());
+<a name="238" href="#238">238</a>             log(<span class="jxr_string">"Evaluating "</span> + aMailAdapter.toString() + <span class="jxr_string">"against \&quot;"</span>
+<a name="239" href="#239">239</a>                     + sieveFileName + <span class="jxr_string">"\&quot;"</span>);
+<a name="240" href="#240">240</a>             factory.evaluate(aMailAdapter,
+<a name="241" href="#241">241</a>                     factory.parse(<strong class="jxr_keyword">new</strong> FileInputStream(sieveFileName)));
+<a name="242" href="#242">242</a>         }
+<a name="243" href="#243">243</a>         <strong class="jxr_keyword">catch</strong> (Exception ex)
+<a name="244" href="#244">244</a>         {
+<a name="245" href="#245">245</a>             <em class="jxr_comment">//</em>
+<a name="246" href="#246">246</a>             <em class="jxr_comment">// SLIEVE is a mail filtering protocol.</em>
+<a name="247" href="#247">247</a>             <em class="jxr_comment">// Rejecting the mail because it cannot be filtered</em>
+<a name="248" href="#248">248</a>             <em class="jxr_comment">// seems very unfriendly.</em>
+<a name="249" href="#249">249</a>             <em class="jxr_comment">// So just log and store in INBOX.</em>
+<a name="250" href="#250">250</a>             <em class="jxr_comment">//</em>
+<a name="251" href="#251">251</a>             log(<span class="jxr_string">"Cannot evaluate Sieve script. Storing mail in user INBOX."</span>, ex);
+<a name="252" href="#252">252</a>             storeMessageInbox(username, aMail);
+<a name="253" href="#253">253</a>         }
+<a name="254" href="#254">254</a>     }
+<a name="255" href="#255">255</a>     
+<a name="256" href="#256">256</a>     <strong class="jxr_keyword">void</strong> storeMessageInbox(String username, Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="257" href="#257">257</a>         String url = <span class="jxr_string">"mailbox://"</span> + username + <span class="jxr_string">"@localhost/"</span>;
+<a name="258" href="#258">258</a>         poster.post(url, mail.getMessage());
+<a name="259" href="#259">259</a>     }
+<a name="260" href="#260">260</a> 
+<a name="261" href="#261">261</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="262" href="#262">262</a> <em class="jxr_javadoccomment">     * @see org.apache.mailet.GenericMailet#init()</em>
+<a name="263" href="#263">263</a> <em class="jxr_javadoccomment">     */</em>
+<a name="264" href="#264">264</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> init() <strong class="jxr_keyword">throws</strong> MessagingException {
+<a name="265" href="#265">265</a>         <strong class="jxr_keyword">super</strong>.init();
+<a name="266" href="#266">266</a>         <strong class="jxr_keyword">if</strong> (poster == <strong class="jxr_keyword">null</strong>) {
+<a name="267" href="#267">267</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> MailetException(<span class="jxr_string">"Not initialised. Please ensure that the mailet container supports either"</span> +
+<a name="268" href="#268">268</a>                     <span class="jxr_string">" setter or constructor injection"</span>);
 <a name="269" href="#269">269</a>         }
-<a name="270" href="#270">270</a>     }
-<a name="271" href="#271">271</a>     
-<a name="272" href="#272">272</a>     <strong class="jxr_keyword">void</strong> storeMessageInbox(String username, Mail mail) <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="273" href="#273">273</a>         String url = <span class="jxr_string">"mailbox://"</span> + username + <span class="jxr_string">"@localhost/"</span>;
-<a name="274" href="#274">274</a>         poster.post(url, mail.getMessage());
-<a name="275" href="#275">275</a>     }
-<a name="276" href="#276">276</a> 
-<a name="277" href="#277">277</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="278" href="#278">278</a> <em class="jxr_javadoccomment">     * @see org.apache.mailet.GenericMailet#init()</em>
-<a name="279" href="#279">279</a> <em class="jxr_javadoccomment">     */</em>
-<a name="280" href="#280">280</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> init() <strong class="jxr_keyword">throws</strong> MessagingException {
-<a name="281" href="#281">281</a>         <strong class="jxr_keyword">super</strong>.init();
-<a name="282" href="#282">282</a>         <strong class="jxr_keyword">if</strong> (poster == <strong class="jxr_keyword">null</strong>) {
-<a name="283" href="#283">283</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> MailetException(<span class="jxr_string">"Not initialised. Please ensure that the mailet container supports either"</span> +
-<a name="284" href="#284">284</a>                     <span class="jxr_string">" setter or constructor injection"</span>);
-<a name="285" href="#285">285</a>         }
-<a name="286" href="#286">286</a>         
-<a name="287" href="#287">287</a>         deliveryHeader = getInitParameter(<span class="jxr_string">"addDeliveryHeader"</span>);
-<a name="288" href="#288">288</a>         String resetReturnPathString = getInitParameter(<span class="jxr_string">"resetReturnPath"</span>);
-<a name="289" href="#289">289</a>         resetReturnPath = <span class="jxr_string">"true"</span>.equalsIgnoreCase(resetReturnPathString);
-<a name="290" href="#290">290</a>     }
-<a name="291" href="#291">291</a> }
+<a name="270" href="#270">270</a>         
+<a name="271" href="#271">271</a>         deliveryHeader = getInitParameter(<span class="jxr_string">"addDeliveryHeader"</span>);
+<a name="272" href="#272">272</a>         String resetReturnPathString = getInitParameter(<span class="jxr_string">"resetReturnPath"</span>);
+<a name="273" href="#273">273</a>         resetReturnPath = <span class="jxr_string">"true"</span>.equalsIgnoreCase(resetReturnPathString);
+<a name="274" href="#274">274</a>     }
+<a name="275" href="#275">275</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: james/site/trunk/www/jsieve/main/apidocs/allclasses-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/allclasses-frame.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/allclasses-frame.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/allclasses-frame.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:45 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:51 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/allclasses-noframe.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/allclasses-noframe.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/allclasses-noframe.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/allclasses-noframe.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:45 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:51 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/constant-values.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/constant-values.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/constant-values.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/constant-values.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Constant Field Values (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/deprecated-list.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/deprecated-list.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/deprecated-list.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/deprecated-list.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:44 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:51 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Deprecated List (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/help-doc.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/help-doc.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/help-doc.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/help-doc.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:45 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:51 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 API Help (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/index-all.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/index-all.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/index-all.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/index-all.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:44 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:51 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Index (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/index.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/index.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/index.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/index.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc on Sun Nov 30 17:37:45 GMT 2008-->
+<!-- Generated by javadoc on Mon Dec 01 22:17:51 GMT 2008-->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Apache JAMES jSieve 0.3-SNAPSHOT API

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Argument.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Argument.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Argument.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Argument.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Argument (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Arguments.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Arguments.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Arguments.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Arguments.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Arguments (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/BaseSieveContext.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/BaseSieveContext.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/BaseSieveContext.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/BaseSieveContext.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 BaseSieveContext (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Block.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Block.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Block.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Block.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Block (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Command.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Command.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Command.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Command.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Command (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 CommandManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManagerImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManagerImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManagerImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandManagerImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 CommandManagerImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandStateManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandStateManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandStateManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/CommandStateManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 CommandStateManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Commands.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Commands.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Commands.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Commands.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:40 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Commands (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ComparatorManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManagerImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManagerImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManagerImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ComparatorManagerImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:36 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ComparatorManagerImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConditionManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConditionManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConditionManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConditionManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ConditionManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConfigurationManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConfigurationManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConfigurationManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ConfigurationManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ConfigurationManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Executable.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Executable.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Executable.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Executable.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Executable (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ExecutableCommand.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ExecutableCommand.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ExecutableCommand.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ExecutableCommand.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ExecutableCommand (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/NumberArgument.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/NumberArgument.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/NumberArgument.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/NumberArgument.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 NumberArgument (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ScriptCoordinate.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ScriptCoordinate.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ScriptCoordinate.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/ScriptCoordinate.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 ScriptCoordinate (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveConfigurationException.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveConfigurationException.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveConfigurationException.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveConfigurationException.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SieveConfigurationException (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveContext.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveContext.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveContext.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveContext.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SieveContext (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveFactory.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveFactory.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveFactory.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveFactory.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SieveFactory (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveParserVisitorImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveParserVisitorImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveParserVisitorImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveParserVisitorImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:41 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SieveParserVisitorImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveValidationVisitor.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveValidationVisitor.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveValidationVisitor.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/SieveValidationVisitor.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SieveValidationVisitor (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/StringListArgument.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/StringListArgument.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/StringListArgument.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/StringListArgument.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 StringListArgument (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TagArgument.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TagArgument.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TagArgument.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TagArgument.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 TagArgument (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Test.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Test.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Test.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/Test.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Test (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestList.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestList.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestList.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestList.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 TestList (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 TestManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManagerImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManagerImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManagerImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/TestManagerImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:37 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:42 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 TestManagerImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Argument.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Argument.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Argument.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Argument.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.jsieve.Argument (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Arguments.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Arguments.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Arguments.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Arguments.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.Arguments (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/BaseSieveContext.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/BaseSieveContext.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/BaseSieveContext.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/BaseSieveContext.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.BaseSieveContext (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Block.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Block.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Block.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Block.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.Block (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Command.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Command.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Command.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Command.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.Command (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.jsieve.CommandManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManagerImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManagerImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManagerImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandManagerImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.CommandManagerImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandStateManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandStateManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandStateManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/CommandStateManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.CommandStateManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Commands.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Commands.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Commands.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/Commands.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.Commands (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.jsieve.ComparatorManager (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManagerImpl.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManagerImpl.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManagerImpl.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ComparatorManagerImpl.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.ComparatorManagerImpl (Apache JAMES jSieve 0.3-SNAPSHOT API)

Modified: james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ConditionManager.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ConditionManager.html?rev=722268&r1=722267&r2=722268&view=diff
==============================================================================
--- james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ConditionManager.html (original)
+++ james/site/trunk/www/jsieve/main/apidocs/org/apache/jsieve/class-use/ConditionManager.html Mon Dec  1 14:33:02 2008
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Sun Nov 30 17:37:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_16) on Mon Dec 01 22:17:49 GMT 2008 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.jsieve.ConditionManager (Apache JAMES jSieve 0.3-SNAPSHOT API)