<< 12 November 2006 | Home | 14 November 2006 >>

Always Open. Now Free.

Java has been GPL'ed.

Tags :

Limits in Notes 7 junk mail handling?

We have a customer that receives tons of e-mail and hence a lot of spam is sent to them every day. Apart from using a third party anti-spam solution on the server they also use the junk mail functionality in Notes 7. Until today that is... Today they started to receive a strange message when trying to add more addresses to the list of blocked e-mail addresses.

Read more...

Tags :

dbgMsg-methods in lotus.domino.AgentBase

Anyone who knows what the dbgMsg-methods in lotus.domino.AgentBase does except simply outputting to the system console?

public void setDebug(boolean)
public void dbgMsg(String);
public void dbgMsg(String, PrintWriter);
public void dbgMsg(String, PrintStream);
Once you call the setDebug-method with a parameter of true, the dbgMsg-methods will output text to the Java Debug Console or the supplied java.io.PrintWriter or java.io.PrintStream.

Tags :

IBM - Failover does not work for @Db Functions in Notes

Technote 1093915 outlines some information which is nice to remember when using @Formula to access databases in clusters. After considering this technote you might want a scheduled LotusScript or Java agent to discover the replica id of the target database and store the replica id in a profile document for usage by formula agents. This approach is usable if you want failover to work correctly and doesn't want to hardcode the replica id into agents which I always consider bad practice.

IBM - Failover does not work for @Db Functions in Notes

Tags :