Dennis Carr | 1 Feb 2004 04:40
Favicon

[sylpheed:22294] Bug noticed

If a message is moved to an IMAP folder from a local folder, the
originating folder count will not update.

Running 0.9.9.

-Dennis Carr

Brian Sammon | 1 Feb 2004 07:54
Picon
Favicon

[sylpheed:22295] bug in configure script in 0.9.9

I'm trying to build sylpheed on a system which does not have the gdk-imlib 
development stuff installed.

If I just do a plain "configure", the imlib test fails, and the summary at the 
end tells me I don't have image support, but src/Makefile contains
  GDK_IMLIB_LIBS = -L/usr/lib -lgdk_imlib -L/usr/lib -L/usr/X11R6/lib -lgtk \
	-lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm 
and the final link fails because it can't find libgdk_imlib to link to.

When I do "configure --disable-imlib", the GDK_IMLIB_LIBS
entry in src/Makefile is empty, and it builds fine.

For some reason the configure script is not doing this when the imlib test 
fails.

I run debian testing with the following imlib-related packages installed:
ii  gdk-imlib1     1.9.14-14      imaging library for use with gtk (using libp
ii  imlib-base     1.9.14-14      Common files needed by the Imlib/Gdk-Imlib p
ii  imlib1         1.8.1-1        Imlib is an imaging library for X and X11
ii  libimlib2      1.0.5-2        Powerful image loading and rendering library
ii  python-gdk-iml 0.6.11-15      GTK gdk_imlib support module for Python

imlib-base contains /usr/bin/imlib-config, but it's not much good without the 
appropriate -dev packages.

If I can provide any more information, let me know.

Alfons Hoogervorst | 1 Feb 2004 14:55
X-Face
Picon

[sylpheed:22296] Re: bug in configure script in 0.9.9

Lo Brian,

On 01-02-04 (Sun) 01:54 -0500 Brian Sammon <brians+ <at> cs.cmu.edu> wrote:

| imlib-base contains /usr/bin/imlib-config, but it's not much good
| without the appropriate -dev packages.
| 

Seems to me that the AM_PATH_IMLIB macro doesn't do something right.

Can you try the attached (quick and dirty) patch, and see if it still
defines GDK_IMLIB_LIBS?

Thanks.

--

-- 
Ecuación algebraico sin solución posible,
a menos de poseer profundos conocimientos
en matemática - Revueltas (Ocho Por Radio)
Index: configure.in
===================================================================
RCS file: /cvsroot/sylpheed/sylpheed/configure.in,v
retrieving revision 1.899
diff -u -r1.899 configure.in
--- configure.in	28 Jan 2004 09:32:20 -0000	1.899
+++ configure.in	1 Feb 2004 13:53:26 -0000
 <at>  <at>  -110,7 +110,9  <at>  <at> 
 fi
(Continue reading)

Brian Sammon | 1 Feb 2004 22:10
Picon
Favicon

[sylpheed:22297] Re: bug in configure script in 0.9.9

> Seems to me that the AM_PATH_IMLIB macro doesn't do something right.

Actually, it appears to me that the AM_PATH_IMLIB macro isn't even used.

>  	AM_PATH_GDK_IMLIB(1.9,
> -		AC_DEFINE(HAVE_GDK_IMLIB, 1, Define if you use gdk_imlib to 
> support image view),
> +		AC_CHECK_HEADER(Imlib.h, 
> +			AC_DEFINE(HAVE_GDK_IMLIB, 1, Define if you use 
> gdk_imlib to support image view),
> +			[ac_cv_enable_imlib=no]),

Okay, it appears to me that you're on the wrong track here.  The 
AM_PATH_GDK_IMLIB test fails, so thu stuff that you added isn't getting called 
in my case.

Here's the patch that worked for me.  I suspect there's a better way to do 
this--probably by patching aclocal.m4 instead of configure.in .

Attachment (configure.in.patch): application/x-patch, 506 bytes
Kovács Levente | 2 Feb 2004 17:49
Picon

[sylpheed:22298] compose window font

Hi list,

How can I set the font of the compose-window???

Thanx: Levente

-- 
Leva

__

E-Mail: leva <at> interware.hu
AIM: ha5ogl
ICQ: 48710903
MSN: ha5ogl <at> hotmail.com
Yahoo!: kieg_tk16
Home Page: http://web.interware.hu/leva
Public key: http://web.interware.hu/leva/cuccok/public_key

________________________________________

/"\
\ /    ASCII Ribbon Campaign
 X   against HTML email & vCards
/ \     http://arc.pasp.de/

Have Fun, & Linux! 73 for all by HA5OGL.
This message was generated by Sylpheed.

(Continue reading)

Godwin Stewart | 2 Feb 2004 18:04
X-Face

[sylpheed:22299] Re: compose window font

I hereby proclaim my innocence and place the blame for the following quote
firmly on the shoulders of Kovács Levente <leva <at> interware.hu>:

> How can I set the font of the compose-window???

Configuration / Common Preferences / Display tab.

-- 
G. Stewart   --   gstewart <at> bonivet.net -- gstewart <at> spamcop.net
Registered Linux user #284683 (Slackware 9.0, Linux 2.4.24)
--------------------------------------------------------------
"Here, Outlook Express, run this program!"  "Okay, stranger."
Brian Sammon | 3 Feb 2004 00:22
Picon
Favicon

[sylpheed:22300] Re: bug in configure script in 0.9.9

> Here's the patch that worked for me.  I suspect there's a better way to do 
> this--probably by patching aclocal.m4 instead of configure.in .

And here it is:

Attachment (aclocal.m4.patch): application/x-patch, 316 bytes
Alfons Hoogervorst | 3 Feb 2004 02:16
X-Face
Picon

[sylpheed:22301] Re: bug in configure script in 0.9.9

Lo Brian,

On 02-02-04 (Mon) 18:22 -0500 Brian Sammon <brians+ <at> cs.cmu.edu> wrote:

| > Here's the patch that worked for me.  I suspect there's a better way
| > to do this--probably by patching aclocal.m4 instead of configure.in
| > .

aclocal is autogenerated. It should be done in configure.in.

Bye.

--

-- 
Ecuación algebraico sin solución posible,
a menos de poseer profundos conocimientos
en matemática - Revueltas (Ocho Por Radio)

Brian Sammon | 3 Feb 2004 03:45
Picon
Favicon

[sylpheed:22302] Re: bug in configure script in 0.9.9

> | > Here's the patch that worked for me.  I suspect there's a better way
> | > to do this--probably by patching aclocal.m4 instead of configure.in
> | > .
> 
> aclocal is autogenerated. It should be done in configure.in.

grumble, grumble... I didn't notice that.  
Okay, there's nothing wrong with the configure.in in sylpheed.
It's actually a bug in the m4 file that comes with gdk-imlib that aclocal used 
to generate the sylpheed aclocal.m4

higuita | 3 Feb 2004 05:47
Picon

[sylpheed:22303] Re: Checking only inbox on IMAP server

On Thu, 29 Jan 2004 08:15:03 +0100 (CET), Reuben Thomas <rrt <at> sc3d.org> wrote:
> I'm using claws 0.9.8a, and this feature is there. The trouble is, if I
> just switch off "scan for new email" on a top-level folder, it doesn't
> apply to the sub-folders. I have about 300 sub-folders, and switching off
> "check for new email" on each one is going to take a long time...

	for big problems, simple solutions:

	close the sylpheed, cd ~/.sylpheed
	edit folderitemrc

	find and replace newmailcheck=1 to newmailcheck=0

	watch out if you want only some folders

	have fun 8)

	you can play with awk or perl for more fine tuning

	example:

cat folderitemrc | awk \
	'/\[#.*big_folders/		{print $0; folder=1; next}; \
	 /newmailcheck=1/ && folder ~ 1	{print "newmailcheck=0" ; folder=0; next}; \
	 { print $0 }'

	but you may need to add first the newmailcheck=1 to all folders
	but that is just adding it before every ^[# and manually
	remove and add the last one
	one run with uniq might also be a good idea  8)
(Continue reading)


Gmane