|
From: Hans-Peter Z. <hp...@gm...> - 2001-07-19 11:07:06
|
Ouch, much too confused today again. This is the mail a wanted
to forward to the list...
----- Forwarded message from dg4iad -----
Date: Thu, 19 Jul 2001 12:57:35 +0200
To: Phil <ph...@sp...>
Subject: Re: [Linkt-users] GnuPG-TX problem
Organization: chaos generation plant
On Thu, Jul 19, 2001 at 01:33:51PM +1000, Phil wrote:
> On Tuesday 17 July 2001 23:24, Hans-Peter Zorn wrote:
> > Hi,
> > FBB's send command is different from BayBox/DieBox/DPBox and
> > therefore incompatible with LinKTs GnuPG-TX. Should be trivial
> > to fix though.
> >
> > -hp
> >
>
> Thanks for the replies.
>
> Yes the FBB send command is the problem but I'm sure how to fix it though.
It should work (in a compatible way to diebox) if we send a \r between
the recipient and the subject. in linkt/gpg.cpp, line 357:
if (strReplyComment.isEmpty() && cmbType->currentText() != "none")
{
text = cmbType->currentText() + " " + edBoard->text();
if (!edMbx->text().isEmpty())
text += " @ " + edMbx->text();
if (!edLt->text().isEmpty())
text += " #" + edLt->text();
text += " \r" + edSubject->text(); //<--- note the \r here
}
else
...
I didn't test it.
-hp
----- End forwarded message -----
|