 |
|
|
|
| Author |
Message |
mad
Joined: 15 Feb 2008 Posts: 5
|
Posted: Fri Feb 15, 2008 5:32 am Post subject: sign outgoing messages on ItemSend |
|
|
Hello everybody!
I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
add-on is to add digital signature to the outgoing messages. I use
event OnItemSend.
At the moment i save IMessage to MIME by
IConverterSession.MAPIToMIMEStm. Next, That file signed by external
application and i try to load signed file to IMessage by
IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
and it become little modified.
For example:
Content-Type: text/plain;charset="us-ascii"
becomes:
Content-Type: text/plain;
charset="us-ascii"
Naturally, signature is no longer valid.
So, how can i add digital signature to outgoing messages? Should I add
a signature some other way or send signed MIME instead of the original
message?
Thank you.
Archived from group: microsoft>public>outlook>program_addins |
|
| Back to top |
|
 |
Dmitry Streblechenko
Joined: 12 Aug 2007 Posts: 220
|
Posted: Sat Feb 16, 2008 1:40 am Post subject: Re: sign outgoing messages on ItemSend |
|
|
Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS to
let Outlook do the \rest?
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"mad" wrote in message @e23g2000prf.googlegroups.com...
> Hello everybody!
>
> I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> add-on is to add digital signature to the outgoing messages. I use
> event OnItemSend.
>
> At the moment i save IMessage to MIME by
> IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> application and i try to load signed file to IMessage by
> IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> and it become little modified.
> For example:
> Content-Type: text/plain;charset="us-ascii"
> becomes:
> Content-Type: text/plain;
> charset="us-ascii"
> Naturally, signature is no longer valid.
>
> So, how can i add digital signature to outgoing messages? Should I add
> a signature some other way or send signed MIME instead of the original
> message?
>
> Thank you. |
|
| Back to top |
|
 |
mad
Joined: 15 Feb 2008 Posts: 5
|
Posted: Mon Feb 18, 2008 5:26 am Post subject: Re: sign outgoing messages on ItemSend |
|
|
The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
this should i set?
On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
> Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS to
> let Outlook do the \rest?
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy š- Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @e23g2000prf.googlegroups.com...
>
> > Hello everybody!
>
> > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> > add-on is to add digital signature to the outgoing messages. I use
> > event OnItemSend.
>
> > At the moment i save IMessage to MIME by
> > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > application and i try to load signed file to IMessage by
> > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > and it become little modified.
> > For example:
> > Content-Type: text/plain;charset="us-ascii"
> > becomes:
> > Content-Type: text/plain;
> > charset="us-ascii"
> > Naturally, signature is no longer valid.
>
> > So, how can i add digital signature to outgoing messages? Should I add
> > a signature some other way or send signed MIME instead of the original
> > message?
>
> > Thank you. |
|
| Back to top |
|
 |
Dmitry Streblechenko
Joined: 12 Aug 2007 Posts: 220
|
Posted: Mon Feb 18, 2008 6:48 pm Post subject: Re: sign outgoing messages on ItemSend |
|
|
Try "IPM.Note.SMIME.MultipartSigned"
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"mad" wrote in message @n77g2000hse.googlegroups.com...
The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
this should i set?
On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
> Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS to
> let Outlook do the \rest?
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @e23g2000prf.googlegroups.com...
>
> > Hello everybody!
>
> > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> > add-on is to add digital signature to the outgoing messages. I use
> > event OnItemSend.
>
> > At the moment i save IMessage to MIME by
> > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > application and i try to load signed file to IMessage by
> > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > and it become little modified.
> > For example:
> > Content-Type: text/plain;charset="us-ascii"
> > becomes:
> > Content-Type: text/plain;
> > charset="us-ascii"
> > Naturally, signature is no longer valid.
>
> > So, how can i add digital signature to outgoing messages? Should I add
> > a signature some other way or send signed MIME instead of the original
> > message?
>
> > Thank you. |
|
| Back to top |
|
 |
mad
Joined: 15 Feb 2008 Posts: 5
|
Posted: Tue Feb 19, 2008 6:52 am Post subject: Re: sign outgoing messages on ItemSend |
|
|
And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
export message to MIME? Before import signed MIME to message? Or after
import?
On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
> Try "IPM.Note.SMIME.MultipartSigned"
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @n77g2000hse.googlegroups.com...
> The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> this should i set?
>
> On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS to
> > let Outlook do the \rest?
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@e23g2000prf.googlegroups.com...
>
> > > Hello everybody!
>
> > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> > > add-on is to add digital signature to the outgoing messages. I use
> > > event OnItemSend.
>
> > > At the moment i save IMessage to MIME by
> > > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > > application and i try to load signed file to IMessage by
> > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > > and it become little modified.
> > > For example:
> > > Content-Type: text/plain;charset="us-ascii"
> > > becomes:
> > > Content-Type: text/plain;
> > > charset="us-ascii"
> > > Naturally, signature is no longer valid.
>
> > > So, how can i add digital signature to outgoing messages? Should I add
> > > a signature some other way or send signed MIME instead of the original
> > > message?
>
> > > Thank you. |
|
| Back to top |
|
 |
Dmitry Streblechenko
Joined: 12 Aug 2007 Posts: 220
|
Posted: Tue Feb 19, 2008 6:47 pm Post subject: Re: sign outgoing messages on ItemSend |
|
|
If I remember correctly, you don't have to do anything but set the message
class - Outlook will sign the message appropriately when its sees the right
message class for the message beign sent.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"mad" wrote in message @n58g2000hsf.googlegroups.com...
And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
export message to MIME? Before import signed MIME to message? Or after
import?
On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
> Try "IPM.Note.SMIME.MultipartSigned"
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @n77g2000hse.googlegroups.com...
> The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> this should i set?
>
> On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS
> > to
> > let Outlook do the \rest?
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@e23g2000prf.googlegroups.com...
>
> > > Hello everybody!
>
> > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> > > add-on is to add digital signature to the outgoing messages. I use
> > > event OnItemSend.
>
> > > At the moment i save IMessage to MIME by
> > > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > > application and i try to load signed file to IMessage by
> > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > > and it become little modified.
> > > For example:
> > > Content-Type: text/plain;charset="us-ascii"
> > > becomes:
> > > Content-Type: text/plain;
> > > charset="us-ascii"
> > > Naturally, signature is no longer valid.
>
> > > So, how can i add digital signature to outgoing messages? Should I add
> > > a signature some other way or send signed MIME instead of the original
> > > message?
>
> > > Thank you. |
|
| Back to top |
|
 |
mad
Joined: 15 Feb 2008 Posts: 5
|
Posted: Wed Feb 20, 2008 6:51 am Post subject: Re: sign outgoing messages on ItemSend |
|
|
But with which certificate Outlook will sign the message then? How to
set certificate to sign the message with?
At the moment, after
MailItem.MessageClass := 'IPM.Note.SMIME.Multipartsigned';
MailItem.Save;
Outlook crashes while sending message.
On 19 feb, 22:47, "Dmitry Streblechenko" wrote:
> If I remember correctly, you don't have to do anything but set the message
> class - Outlook will sign the message appropriately when its sees the right
> message class for the message beign sent.
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @n58g2000hsf.googlegroups.com...
> And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
> export message to MIME? Before import signed MIME to message? Or after
> import?
>
> On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
>
> > Try "IPM.Note.SMIME.MultipartSigned"
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@n77g2000hse.googlegroups.com...
> > The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> > this should i set?
>
> > On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > > Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS
> > > to
> > > let Outlook do the \rest?
>
> > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > OutlookSpy - Outlook, CDO
> > > and MAPI Developer Tool
>
> > > "mad" wrote in message
>
> > >@e23g2000prf.googlegroups.com....
>
> > > > Hello everybody!
>
> > > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of this
> > > > add-on is to add digital signature to the outgoing messages. I use
> > > > event OnItemSend.
>
> > > > At the moment i save IMessage to MIME by
> > > > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > > > application and i try to load signed file to IMessage by
> > > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > > > and it become little modified.
> > > > For example:
> > > > Content-Type: text/plain;charset="us-ascii"
> > > > becomes:
> > > > Content-Type: text/plain;
> > > > charset="us-ascii"
> > > > Naturally, signature is no longer valid.
>
> > > > So, how can i add digital signature to outgoing messages? Should I add
> > > > a signature some other way or send signed MIME instead of the original
> > > > message?
>
> > > > Thank you. |
|
| Back to top |
|
 |
Dmitry Streblechenko
Joined: 12 Aug 2007 Posts: 220
|
Posted: Wed Feb 20, 2008 3:16 pm Post subject: Re: sign outgoing messages on ItemSend |
|
|
Can you send signed/encrypted messages through Outlook?
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"mad" wrote in message @41g2000hsc.googlegroups.com...
But with which certificate Outlook will sign the message then? How to
set certificate to sign the message with?
At the moment, after
MailItem.MessageClass := 'IPM.Note.SMIME.Multipartsigned';
MailItem.Save;
Outlook crashes while sending message.
On 19 feb, 22:47, "Dmitry Streblechenko" wrote:
> If I remember correctly, you don't have to do anything but set the message
> class - Outlook will sign the message appropriately when its sees the
> right
> message class for the message beign sent.
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @n58g2000hsf.googlegroups.com...
> And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
> export message to MIME? Before import signed MIME to message? Or after
> import?
>
> On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
>
> > Try "IPM.Note.SMIME.MultipartSigned"
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@n77g2000hse.googlegroups.com...
> > The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> > this should i set?
>
> > On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > > Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS
> > > to
> > > let Outlook do the \rest?
>
> > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > OutlookSpy - Outlook, CDO
> > > and MAPI Developer Tool
>
> > > "mad" wrote in message
>
> > >@e23g2000prf.googlegroups.com...
>
> > > > Hello everybody!
>
> > > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of
> > > > this
> > > > add-on is to add digital signature to the outgoing messages. I use
> > > > event OnItemSend.
>
> > > > At the moment i save IMessage to MIME by
> > > > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > > > application and i try to load signed file to IMessage by
> > > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > > > and it become little modified.
> > > > For example:
> > > > Content-Type: text/plain;charset="us-ascii"
> > > > becomes:
> > > > Content-Type: text/plain;
> > > > charset="us-ascii"
> > > > Naturally, signature is no longer valid.
>
> > > > So, how can i add digital signature to outgoing messages? Should I
> > > > add
> > > > a signature some other way or send signed MIME instead of the
> > > > original
> > > > message?
>
> > > > Thank you. |
|
| Back to top |
|
 |
mad
Joined: 15 Feb 2008 Posts: 5
|
Posted: Fri Feb 22, 2008 5:26 am Post subject: Re: sign outgoing messages on ItemSend |
|
|
Yes, i can. But i cant't install my certificate to clients machines.
Anyway... I need to generate some signature for outgoing message and
put it in X-header, for example. And when the message will be recieved
by outlook with my add-in installed, then the message can be verified
based on that signature.
Can i get the stream, that outlook send to smtp-server?
Because if i calculate signature for exported message (by MapiToMime)
and put it to X-header, then Outlook generate new message for smtp
while sending. And "------=_NextPart_000_0009..." becomes to "------
=_NextPart_000_000D...", so i can't verify my signature.
p.s. sorry for my english
On 20 фев, 19:16, "Dmitry Streblechenko" wrote:
> Can you send signed/encrypted messages through Outlook?
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy  - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @41g2000hsc.googlegroups.com...
> But with which certificate Outlook will sign the message then? How to
> set certificate to sign the message with?
> At the moment, after
> MailItem.MessageClass := 'IPM.Note.SMIME.Multipartsigned';
> MailItem.Save;
> Outlook crashes while sending message.
>
> On 19 feb, 22:47, "Dmitry Streblechenko" wrote:
>
> > If I remember correctly, you don't have to do anything but set the message
> > class - Outlook will sign the message appropriately when its sees the
> > right
> > message class for the message beign sent.
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@n58g2000hsf.googlegroups.com...
> > And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
> > export message to MIME? Before import signed MIME to message? Or after
> > import?
>
> > On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
>
> > > Try "IPM.Note.SMIME.MultipartSigned"
>
> > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > OutlookSpy - Outlook, CDO
> > > and MAPI Developer Tool
>
> > > "mad" wrote in message
>
> > >@n77g2000hse.googlegroups.com....
> > > The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> > > this should i set?
>
> > > On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > > > Have you tried to simply set the appropriate value of PR_MESSAGE_CLASS
> > > > to
> > > > let Outlook do the \rest?
>
> > > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > > OutlookSpy - Outlook, CDO
> > > > and MAPI Developer Tool
>
> > > > "mad" wrote in message
>
> > > >@e23g2000prf.googlegroups.com...
>
> > > > > Hello everybody!
>
> > > > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of
> > > > > this
> > > > > add-on is to add digital signature to the outgoing messages. I use
> > > > > event OnItemSend.
>
> > > > > At the moment i save IMessage to MIME by
> > > > > IConverterSession.MAPIToMIMEStm. Next, That file signed by external
> > > > > application and i try to load signed file to IMessage by
> > > > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded message,
> > > > > and it become little modified.
> > > > > For example:
> > > > > Content-Type: text/plain;charset="us-ascii"
> > > > > becomes:
> > > > > Content-Type: text/plain;
> > > > > charset="us-ascii"
> > > > > Naturally, signature is no longer valid.
>
> > > > > So, how can i add digital signature to outgoing messages? Should I
> > > > > add
> > > > > a signature some other way or send signed MIME instead of the
> > > > > original
> > > > > message?
>
> > > > > Thank you. |
|
| Back to top |
|
 |
Dmitry Streblechenko
Joined: 12 Aug 2007 Posts: 220
|
Posted: Fri Feb 22, 2008 7:47 pm Post subject: Re: sign outgoing messages on ItemSend |
|
|
No, I don't think you can access the MIME stream that OUtlook will create...
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"mad" wrote in message @q33g2000hsh.googlegroups.com...
Yes, i can. But i cant't install my certificate to clients machines.
Anyway... I need to generate some signature for outgoing message and
put it in X-header, for example. And when the message will be recieved
by outlook with my add-in installed, then the message can be verified
based on that signature.
Can i get the stream, that outlook send to smtp-server?
Because if i calculate signature for exported message (by MapiToMime)
and put it to X-header, then Outlook generate new message for smtp
while sending. And "------=_NextPart_000_0009..." becomes to "------
=_NextPart_000_000D...", so i can't verify my signature.
p.s. sorry for my english
On 20 ???, 19:16, "Dmitry Streblechenko" wrote:
> Can you send signed/encrypted messages through Outlook?
>
> Dmitry Streblechenko (MVP)http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
>
> "mad" wrote in message
>
> @41g2000hsc.googlegroups.com...
> But with which certificate Outlook will sign the message then? How to
> set certificate to sign the message with?
> At the moment, after
> MailItem.MessageClass := 'IPM.Note.SMIME.Multipartsigned';
> MailItem.Save;
> Outlook crashes while sending message.
>
> On 19 feb, 22:47, "Dmitry Streblechenko" wrote:
>
> > If I remember correctly, you don't have to do anything but set the
> > message
> > class - Outlook will sign the message appropriately when its sees the
> > right
> > message class for the message beign sent.
>
> > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
>
> > "mad" wrote in message
>
> >@n58g2000hsf.googlegroups.com...
> > And when shoud i set it to "IPM.Note.SMIME.MultipartSigned"? Before
> > export message to MIME? Before import signed MIME to message? Or after
> > import?
>
> > On 18 feb, 22:48, "Dmitry Streblechenko" wrote:
>
> > > Try "IPM.Note.SMIME.MultipartSigned"
>
> > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > OutlookSpy - Outlook, CDO
> > > and MAPI Developer Tool
>
> > > "mad" wrote in message
>
> > >@n77g2000hse.googlegroups.com...
> > > The values of PR_MESSAGE_CLASS is "IPM.Note". What value instead of
> > > this should i set?
>
> > > On 16 ÆÅ×, 05:40, "Dmitry Streblechenko" wrote:
>
> > > > Have you tried to simply set the appropriate value of
> > > > PR_MESSAGE_CLASS
> > > > to
> > > > let Outlook do the \rest?
>
> > > > Dmitry Streblechenko (MVP)http://www.dimastr.com/
> > > > OutlookSpy - Outlook, CDO
> > > > and MAPI Developer Tool
>
> > > > "mad" wrote in message
>
> > > >@e23g2000prf.googlegroups.com...
>
> > > > > Hello everybody!
>
> > > > > I'm writing an add-on for Outlook 2007 in Delphi. The purpose of
> > > > > this
> > > > > add-on is to add digital signature to the outgoing messages. I use
> > > > > event OnItemSend.
>
> > > > > At the moment i save IMessage to MIME by
> > > > > IConverterSession.MAPIToMIMEStm. Next, That file signed by
> > > > > external
> > > > > application and i try to load signed file to IMessage by
> > > > > IConverterSession.MIMEToMAPI. But then Outlook sends loaded
> > > > > message,
> > > > > and it become little modified.
> > > > > For example:
> > > > > Content-Type: text/plain;charset="us-ascii"
> > > > > becomes:
> > > > > Content-Type: text/plain;
> > > > > charset="us-ascii"
> > > > > Naturally, signature is no longer valid.
>
> > > > > So, how can i add digital signature to outgoing messages? Should I
> > > > > add
> > > > > a signature some other way or send signed MIME instead of the
> > > > > original
> > > > > message?
>
> > > > > Thank you.
|
|
| Back to top |
|
 |
|
|
| Related Topics: | Rules for outgoing messages A colleague of mine is using Outlook 2001 for Mac (I think he's using OS X) Is there a way to sort his messages, as they are sent, into subfolders of his sent items folder? I can do it on my PC in Outlook 2003, but can't find it in the version for Mac. An
How do you auto insert a disclaimer on outgoing messages Is there a way in MS Outlook to compose and automatically insert a disclaimer on all outgoing messages?
Unable to send outgoing messages in Windows email-Vista? Certain messages will not send. My husband has same computer with Visa and he has not problem sending. We have checked out settings under accounts and they are identica. Can you please help? Thank you.
ItemSend Event Dear Friends, I have the following question: I use OL2003 and have 3 email accounts. What I need to do is to move the sent email to a subfolde based on the account I am using. Is this possible with ItemSend Event or there is any other solution? How can I
Can't Sign In Live Mail I have two live mail accounts xxx@live.com But it says i don't have access to sync the account. I thought all live.com emails are enabled for sync? |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|