commits@javamail.java.net

[javamail~mercurial:334] Added tag JAVAMAIL-1_4_4 for changeset 9cff25c6d73c

From: <shannon_at_kenai.com>
Date: Mon, 24 Jan 2011 20:45:30 +0000

Project: javamail
Repository: mercurial
Revision: 334
Author: shannon
Date: 2011-01-14 23:16:33 UTC
Link:

Log Message:
------------
Fix bug that caused last message in mailbox to be lost if it didn't
have a Content-Length header.
Set the SEEN flag at the beginning of writeTo, so it will show up in the
message headers.
Forgot to remove "synchronized" from getFileCache method when fileCache field
was made volatile, which can cause a deadlock.
Update copyright to 2011.
Update version to 1.4.4.
Added tag JAVAMAIL-1_4_4 for changeset 9cff25c6d73c


Revisions:
----------
329
330
331
332
333
334


Modified Paths:
---------------
mbox/src/main/java/com/sun/mail/mbox/MessageLoader.java
mbox/src/main/java/com/sun/mail/mbox/MboxMessage.java
mail/src/main/java/com/sun/mail/pop3/POP3Folder.java
doc/release/COPYRIGHT.txt
client/pom.xml
demo/pom.xml
dsn/pom.xml
imap/pom.xml
javadoc/pom.xml
logging/pom.xml
mail/pom.xml
mailapi/pom.xml
mailapijar/pom.xml
mbox/dist/pom.xml
mbox/native/pom.xml
mbox/pom.xml
oldmail/pom.xml
outlook/pom.xml
parent-distrib/pom.xml
pom.xml
pop3/pom.xml
servlet/pom.xml
smtp/pom.xml
taglib/pom.xml
webapp/pom.xml
.hgtags


Diffs:
------
diff -r 3787150936bd -r 580033997617 mbox/src/main/java/com/sun/mail/mbox/MessageLoader.java
--- a/mbox/src/main/java/com/sun/mail/mbox/MessageLoader.java Wed Jan 05 15:50:05 2011 -0800
+++ b/mbox/src/main/java/com/sun/mail/mbox/MessageLoader.java Wed Jan 12 17:16:31 2011 -0800
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  *
- * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
  *
  * The contents of this file are subject to the terms of either the GNU
  * General Public License Version 2 only ("GPL") or the Common Development
@@ -89,8 +89,12 @@
                 if (n == 0) {
                     // didn't find a Content-Length, skip the body
                     start = skipBody();
- if (start < 0)
+ if (start < 0) {
+ md.end = -1;
+ msgs.add(md);
+ loaded++;
                         break;
+ }
                 } else {
                     // skip over the body
                     skip(n);


diff -r 580033997617 -r e9d1d2a0b08f mbox/src/main/java/com/sun/mail/mbox/MboxMessage.java
--- a/mbox/src/main/java/com/sun/mail/mbox/MboxMessage.java Wed Jan 12 17:16:31 2011 -0800
+++ b/mbox/src/main/java/com/sun/mail/mbox/MboxMessage.java Wed Jan 12 17:24:45 2011 -0800
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  *
- * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
  *
  * The contents of this file are subject to the terms of either the GNU
  * General Public License Version 2 only ("GPL") or the Common Development
@@ -190,7 +190,7 @@
      * @return number of lines in the content.
      * @exception MessagingException
      */
- public int getLineCount() throws MessagingException {
+ public int getLineCount() throws MessagingException {
         if (lineCount < 0 && isMimeType("text/plain")) {
             LineCounter lc = new LineCounter(nullOutputStream);
             // writeTo will set the SEEN flag, remember the original state
@@ -360,7 +360,10 @@
                 status.append('R');
             if (!flags.contains(Flags.Flag.RECENT))
                 status.append('O');
- msg.setHeader("Status", status.toString());
+ if (status.length() > 0)
+ msg.setHeader("Status", status.toString());
+ else
+ msg.removeHeader("Status");
 
             boolean sims = false;
             String s = msg.getHeader("X-Status", null);
@@ -383,7 +386,10 @@
                 status.append('T');
             else if (sims)
                 status.append('$');
- msg.setHeader("X-Status", status.toString());
+ if (status.length() > 0)
+ msg.setHeader("X-Status", status.toString());
+ else
+ msg.removeHeader("X-Status");
 
             String[] userFlags = flags.getUserFlags();
             if (userFlags.length > 0) {
@@ -480,6 +486,15 @@
         }
     }
 
+ public void writeTo(OutputStream os, String[] ignoreList)
+ throws IOException, MessagingException {
+ // set the SEEN flag now, which will normally be set by
+ // getContentStream, so it will show up in our headers
+ if (!isSet(Flags.Flag.SEEN))
+ setFlag(Flags.Flag.SEEN, true);
+ super.writeTo(os, ignoreList);
+ }
+
     /**
      * Interpose on superclass method to make sure folder is still open
      * and message hasn't been expunged.


diff -r e9d1d2a0b08f -r fd4bc8059bca mail/src/main/java/com/sun/mail/pop3/POP3Folder.java
--- a/mail/src/main/java/com/sun/mail/pop3/POP3Folder.java Wed Jan 12 17:24:45 2011 -0800
+++ b/mail/src/main/java/com/sun/mail/pop3/POP3Folder.java Thu Jan 13 00:33:52 2011 -0800
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  *
- * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
  *
  * The contents of this file are subject to the terms of either the GNU
  * General Public License Version 2 only ("GPL") or the Common Development
@@ -581,7 +581,7 @@
     /**
      * Used by POP3Message.
      */
- synchronized TempFile getFileCache() {
+ TempFile getFileCache() {
         return fileCache;
     }
 }


diff -r fd4bc8059bca -r 27614d7abf61 doc/release/COPYRIGHT.txt
--- a/doc/release/COPYRIGHT.txt Thu Jan 13 00:33:52 2011 -0800
+++ b/doc/release/COPYRIGHT.txt Fri Jan 14 15:15:21 2011 -0800
@@ -1,4 +1,4 @@
-Copyright © 1997-2010, Oracle and/or its affiliates. All rights reserved.
+Copyright © 1997-2011, Oracle and/or its affiliates. All rights reserved.
 
 This software and related documentation are provided under a license
 agreement containing restrictions on use and disclosure and are


diff -r 27614d7abf61 -r 9cff25c6d73c client/pom.xml
--- a/client/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/client/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c demo/pom.xml
--- a/demo/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/demo/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c dsn/pom.xml
--- a/dsn/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/dsn/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c imap/pom.xml
--- a/imap/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/imap/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>parent-distrib</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
         <relativePath>../parent-distrib/pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>

diff -r 27614d7abf61 -r 9cff25c6d73c javadoc/pom.xml
--- a/javadoc/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/javadoc/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,13 +48,13 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>
     <artifactId>javadoc</artifactId>
     <packaging>pom</packaging>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     <name>JavaMail API javadocs</name>
     <description>${project.name}</description>
 

diff -r 27614d7abf61 -r 9cff25c6d73c logging/pom.xml
--- a/logging/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/logging/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c mail/pom.xml
--- a/mail/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mail/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c mailapi/pom.xml
--- a/mailapi/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mailapi/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -56,7 +56,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c mailapijar/pom.xml
--- a/mailapijar/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mailapijar/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -55,7 +55,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>javax.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c mbox/dist/pom.xml
--- a/mbox/dist/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mbox/dist/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>

diff -r 27614d7abf61 -r 9cff25c6d73c mbox/native/pom.xml
--- a/mbox/native/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mbox/native/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>

diff -r 27614d7abf61 -r 9cff25c6d73c mbox/pom.xml
--- a/mbox/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/mbox/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c oldmail/pom.xml
--- a/oldmail/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/oldmail/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -53,7 +53,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>javax.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c outlook/pom.xml
--- a/outlook/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/outlook/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c parent-distrib/pom.xml
--- a/parent-distrib/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/parent-distrib/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c pom.xml
--- a/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -49,7 +49,7 @@
     <groupId>com.sun.mail</groupId>
     <artifactId>all</artifactId>
     <packaging>pom</packaging>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     <name>JavaMail API distribution</name>
     <description>${project.name}</description>
     <url>http://kenai.com/projects/javamail</url>
@@ -75,9 +75,9 @@
     </organization>
 
     <properties>
- <mail.version>1.4.4-rc1</mail.version>
+ <mail.version>1.4.4</mail.version>
         <!-- like mail.version, but with underscores instead of dots -->
- <mail.zipversion>1_4_4-rc1</mail.zipversion>
+ <mail.zipversion>1_4_4</mail.zipversion>
         <mail.spec.version>1.4</mail.spec.version>
         <activation-api.version>1.1</activation-api.version>
         <!-- defaults that are overridden in mail module -->

diff -r 27614d7abf61 -r 9cff25c6d73c pop3/pom.xml
--- a/pop3/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/pop3/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>parent-distrib</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
         <relativePath>../parent-distrib/pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>

diff -r 27614d7abf61 -r 9cff25c6d73c servlet/pom.xml
--- a/servlet/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/servlet/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c smtp/pom.xml
--- a/smtp/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/smtp/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>parent-distrib</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
         <relativePath>../parent-distrib/pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>

diff -r 27614d7abf61 -r 9cff25c6d73c taglib/pom.xml
--- a/taglib/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/taglib/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>

diff -r 27614d7abf61 -r 9cff25c6d73c webapp/pom.xml
--- a/webapp/pom.xml Fri Jan 14 15:15:21 2011 -0800
+++ b/webapp/pom.xml Fri Jan 14 15:16:11 2011 -0800
@@ -3,7 +3,7 @@
 
     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
- Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
 
     The contents of this file are subject to the terms of either the GNU
     General Public License Version 2 only ("GPL") or the Common Development
@@ -48,7 +48,7 @@
     <parent>
         <groupId>com.sun.mail</groupId>
         <artifactId>all</artifactId>
- <version>1.4.4-rc1</version>
+ <version>1.4.4</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.sun.mail</groupId>


diff -r 9cff25c6d73c -r c3debabaa778 .hgtags
--- a/.hgtags Fri Jan 14 15:16:11 2011 -0800
+++ b/.hgtags Fri Jan 14 15:16:33 2011 -0800
@@ -6,3 +6,4 @@
 200b5a729cff286d1288b64287dc339233cd5040 JAVAMAIL-1_4_3
 1f3f699ed17aa2c740eb09def5d83dd80671748a JAVAMAIL-1_4_3
 0a99728ee1d1d3d2b27ab76e0db05d9652ee1063 JAVAMAIL-1_4_4-RC1
+9cff25c6d73c8f86ff27f4cb39f7c3c092c34dd7 JAVAMAIL-1_4_4