@ -164,7 +164,8 @@ public:
KMMessage * createReply ( KMail : : ReplyStrategy replyStrategy = KMail : : ReplySmart ,
KMMessage * createReply ( KMail : : ReplyStrategy replyStrategy = KMail : : ReplySmart ,
TQString selection = TQString ( ) , bool noQuote = false ,
TQString selection = TQString ( ) , bool noQuote = false ,
bool allowDecryption = true ,
bool allowDecryption = true ,
const TQString & tmpl = TQString ( ) ) ;
const TQString & tmpl = TQString ( ) ,
const TQString & originatingAccount = TQString ( ) ) ;
/** Create a new message that is a redirect to this message, filling all
/** Create a new message that is a redirect to this message, filling all
required header fields with the proper values . The returned message
required header fields with the proper values . The returned message
@ -802,6 +803,10 @@ public:
TQString fileName ( ) const { return mFileName ; }
TQString fileName ( ) const { return mFileName ; }
void setFileName ( const TQString & file ) { if ( mFileName ! = file ) { mFileName = file ; setDirty ( true ) ; } }
void setFileName ( const TQString & file ) { if ( mFileName ! = file ) { mFileName = file ; setDirty ( true ) ; } }
/** Get/set originating account name. */
TQString originatingAccountName ( ) const { return mOriginatingAccountName ; }
void setOriginatingAccountName ( const TQString & account ) { if ( mOriginatingAccountName ! = account ) { mOriginatingAccountName = account ; setDirty ( true ) ; } }
/** Get/set size of message in the folder including the whole header in
/** Get/set size of message in the folder including the whole header in
bytes . Can be 0 , if the message is not in a folder .
bytes . Can be 0 , if the message is not in a folder .
The setting of mMsgSize = mMsgLength = sz is needed for popFilter */
The setting of mMsgSize = mMsgLength = sz is needed for popFilter */
@ -960,6 +965,7 @@ private:
const TQTextCodec * mOverrideCodec ;
const TQTextCodec * mOverrideCodec ;
TQString mFileName ;
TQString mFileName ;
TQString mOriginatingAccountName ;
off_t mFolderOffset ;
off_t mFolderOffset ;
size_t mMsgSize , mMsgLength ;
size_t mMsgSize , mMsgLength ;
time_t mDate ;
time_t mDate ;