On Thu, 12 Jul 2018 18:04:09 +0100 Brad Rogers <[email protected]> wrote: >Clawsker silently aborts on start up when called from KDE's application >menu. > >When started from command line the following is printed to console >before quitting; > >The encoding pragma is no longer supported at /usr/local/bin/clawsker >line 7. BEGIN failed--compilation aborted at /usr/local/bin/clawsker >line 7. > >Error is simple to correct (found by internet search) > >Replace > use encoding 'utf8'; >with > use utf8; > >at line 7 of clawsker > >I've applied the change and clawsker now works as expected here.
That /usr/local/bin/clawsker in the error message indicates that you are running a clawsker that is compiled from source and not the one packaged in Debian. (A packaged version would run from /usr/bin/clawsker). Also, you are talking about a use-line on line 7 - later versions of clawsker (including 1.1.1) has a shebang and the GPL license from line 1 to line 13. See https://git.claws-mail.org/?p=clawsker.git;a=blob;f=clawsker;h=15346bb8da09a1a11c16a2c4be9464a19ad83c2d;hb=812fb9e5c7e590e0e08b246cf2ff25d9de1d34d7 There you can also see that version 1.1.1 already has a "use utf8;" entry on line 19. /Andreas Rönnquist [email protected]

