--===============76685932352241992== Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_vYTG/zVOO/siPoT"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit --Boundary-02=_vYTG/zVOO/siPoT Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 19 July 2003 10:32, David Smith wrote: > On Friday 18 July 2003 23.16, Ingo Kl=F6cker wrote: > > Thanks for the patch. It looks good. In the last line of the > > QWhatsThis is a typo (depeding -> depending). > > Ha, ha. If you spotted that I'm assured no programming bugs could > slip through either :) > > > Furthermore please add "diff -u3 -p" > > to your ~/.cvsrc. The -p will make your diffs slightly better > > readable. Do you have a cvs account? Or should I commit the patch? > > I can commit (i think, it's been a while...) > > > A little thing is still missing. We'll have to write a kconf_update > > script which upgrades the boolean value of LoopOnGotoUnread to an > > integer. > > Didn't know about that. That's a script like > kmail-3.1-loop-on-goto-unread.pl like this, right? Well, it should be called kmail-3.2-loop-on-goto-unread.pl because it's=20 for upgrading to KMail 3.2. > #!/usr/bin/perl -w > use strict; > while ( <> ) { > if ( /^\[Behaviour\]/ ... /^\[/ ) { > # true =3D> Loop in current folder > # false =3D> Don't loop > s/^LoopOnGotoUnread=3Dtrue/LoopOnGotoUnread=3D1/; > s/^LoopOnGotoUnread=3Dfalse/LoopOnGotoUnread=3D0/; > } > print; > } > > And it should be added to the Makefile.am and to kmail.upd? Yes. But the if statement isn't really necessary. The following simpler=20 script should do the trick: #!/usr/bin/perl -w use strict; while ( <> ) { # true =3D> Loop in current folder # false =3D> Don't loop s/^LoopOnGotoUnread=3Dtrue/LoopOnGotoUnread=3D1/; s/^LoopOnGotoUnread=3Dfalse/LoopOnGotoUnread=3D0/; print; } Regards, Ingo --Boundary-02=_vYTG/zVOO/siPoT Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3rc1 (GNU/Linux) iD8DBQA/GTYvGnR+RTDgudgRAhXaAJ9RV0Yv6hw+S/2/F8I+rdv8qjmhaACfVwBW uQdbAt2kR6WyOUI8vUuyK9s= =kqSM -----END PGP SIGNATURE----- --Boundary-02=_vYTG/zVOO/siPoT-- --===============76685932352241992== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ KMail Developers mailing list kmail@mail.kde.org http://mail.kde.org/mailman/listinfo/kmail --===============76685932352241992==--