Where is email signature stored?

Hi All,

Does Anyone know where a user’s mail signature is stored from the user preferences dialog??

Thanks in advance,

Niall.

Subject: Where is email signature stored?

Hi, in Mail box > Tools >Perference > Mail > Signature

You can see the location of the signature files

Subject: RE: Where is email signature stored?

If the signature is an HTML or image file. If it’s plain text, it’s stored diredtly on the profile document. In either case, to read the value programmatically, you’d go to the Calendar Preferences profile doc.

Subject: Where is email signature stored?

Everything on that dialog is stored in the Calendar Profile document.

Subject: RE: Where is email signature stored?

Thanks Stan,

That’s what I thought. I was using a script to access my own Calendar Profile Document on my own mailfile, but on debugging, the items array for the document only contains 3 items, namely:

[0] [“$Name”, 1280,26,False,False,True,False,…]

[1] [“UpdatedBy”, 1074,17,False,False,True,…]

[2] [“$NoPurge”, 1280,3,False,False,True,…]

The Code I used to access the Profile Doc is:

Set doc = db.GetProfileDocument(“CalendarProfile”,session.UserName)

db and session are set correctly. I need to access the signature field and check it’s value, but I can’t get a handle to it

Am I doing something wrong?

Thanks in advance,

Niall.

Subject: RE: Where is email signature stored?

I think you’ll find that there is no user key for the Calendar Profile – it’s a single database-wide document.

Subject: RE: Where is email signature stored?

Thanks Stan,

I’ve removed the user key, and it works fine.

Regards,

Niall.