Penguin

Differences between version 21 and predecessor to the previous major change of MozillaMail.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 21 Last edited on Friday, May 28, 2004 11:11:29 am by DrewBroadley Revert
Older page: version 18 Last edited on Friday, February 13, 2004 10:10:51 am by CraigBox Revert
@@ -30,8 +30,16 @@
  
 The former one does look like a bug, however I've seen issues like it relating to incorrect XUL. Try removing your .mozilla directory ( you did do this when you upgraded last, like the upgrade notes in Mozilla tell you to, right?) and reloading. 
  
 - DanielLawson 
+  
+Update:  
+You can disable mozilla's dns caching with the following prefs:  
+  
+ user_pref("network.dnsCacheExpiration", 0);  
+ user_pref("network.dnsCacheEntries", 0);  
+  
+- DrewBroadley  
  
 ---- 
 I used MozillaMail on my LAN at home and still had problems, so I don't believe that dynamic IP's are the problem. 
  
@@ -56,4 +64,15 @@
 * As of 1.5, Ctrl-K now brings up a spell checker instead of deleting to the end of the line, as many unix hackers would expect (and how it used to!). Of course, the Help is out-of-date and doesn't mention this, nor how to set you own or disable the spell check. 
 ---- 
  
 Ive used Moz Mail under Sea Monkey and Thunderbird, seem's OK (I mean, it dosn't crash like KMail does) -- ReneBartosh 
+  
+----  
+A simple shell script to start MozillaMail as a standalone:  
+  
+ #!/bin/sh  
+ MOZILLA=/usr/X11R6/bin/mozilla  
+ $MOZILLA -remote "xfeDoCommand (openInbox)" || $MOZILLA -mail &  
+  
+Thanks to __mjl__  
+%%%  
+-DrewBroadley