We recently purchased two new Windows 2003 servers running Domino 8.01 and with the help of some contractors configured them to work with our existing IBM box that’s running Domino 6.5. Most of the users are still using the old server and most of the IT people have migrated over to the new one to make sure everything’s stable. Everything is working fine, but I’m getting some odd results from most of my lotus script agents. There’s an example of how the email is formatted below. Basically it’s just a few carriage returns and tabs to make it look neat. So when the emails go out they look formatted and fine for people on the old server. But for anyone who’s moved over to the new 8.01 servers the tabs are all gone. The new lines are added but there’s no tabs what so ever, all the text is just bunched together. Considering it works fine for people on the old server and has been working fine for years I don’t think it’s anyting in the code. Any ideas?
Call rtitem.AppendText(“User 1”)
Call rtitem.AddTab(2)
Call rtitem.AppendText(email(8))
Call rtitem.AppendText("User 2")
Call rtitem.AddTab(2)
Call rtitem.AppendText(email(7))
Call rtitem.AddNewLine(2)
Call rtitem.AppendDocLink( db, db.Title, "Help Desk Link" )
Call sendemail.Send(False, recipients)