Page 1 of 1

Bug? claws-mail spam button

Posted: 25. Nov 2009, 12:37
by damNageHack
Hi,

i wonder why claws-mail copies spam mails to trash additiionally marking them as deleted. :roll:

Is there an option to disable this behaviour? Saying that spam mails will only be marked as deleted and spam without copies in trash.

I just removed the check on "Move deleted mails to trash and delete immediately." in the account's receive settings. (Sorry dunno the correct english phrase because i am using german translation).

Image

Image

Image

Re: claws-mail spam button

Posted: 25. Nov 2009, 16:58
by thenktor
Your settings should behave like you want it. It seems to be a bug. :roll:

Re: Bug? claws-mail spam button

Posted: 26. Nov 2009, 20:33
by damNageHack
Talked with somebody in irc #claws.

He said that the package has to be corrupted. I tested this by building the package for my own, some tweaking to SLKBUILD from sources was required to get it working, please see attached file SLKBUILD.

Same behaviour with newly built package, so I don't know what to do then.

BTW: I wonder about the originally used mirror for the sources. How can the configure script be directly called instead of my need to call autogen.sh?

Code: Select all

#Maintainer: xy

pkgname=claws-mail
pkgver=3.7.3
pkgrel=1xy
arch=i486
source=("http://downloads.sourceforge.net/project/sylpheed-claws/Claws%20Mail/$pkgver/$pkgname-$pkgver.tar.bz2"  "http://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_gnome-brave.tar.gz")
url="http://www.claws-mail.org/"
docs=('ABOUT-NLS' 'AUTHORS' 'ChangeLog' 'COPYING' 'INSTALL' 'NEWS' 'README' 'TODO')

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"Claws Mail (A GTK+ based, lightweight, and fast e-mail client)."
"Sylpheed-Claws - it bites! A GTK+ based, lightweight, and fast e-mail"
"client and newsreader. Supports POP3, APOP, IMAP, SMTP,AUTH, NNTP,"
"LDAP. Features multiple accounts, spell-checking, address book SSL,"
"GPG/PGP, filtering, scoring, i18n, & more."
)

build() {
	# default theme
	mkdir -p $startdir/pkg/usr/share/claws-mail/themes/
	mv gnome-brave $startdir/pkg/usr/share/claws-mail/themes/ || return 1
##	sed -i 's/#define\ DEFAULT_PIXMAP_THEME.*/#define\ DEFAULT_PIXMAP_THEME\ "\/usr\/share\/claws-mail\/themes\/TangoClaws"/' src/common/defs.h

	cd $startdir/src/$pkgname-$pkgver
	./autogen.sh \
	  --prefix=/usr \
	  --mandir=/usr/man \
	  --docdir=/usr/doc/$pkgname-$pkgver \
	  --disable-static \
	  --disable-spamassassin-plugin \
	  --disable-dillo-viewer-plugin \
	  --disable-jpilot \
	  --disable-gnomeprint
	make -j3 || return 1
	make DESTDIR=$startdir/pkg/ install
}

# Doinst
doinst() {
	if [ -x usr/bin/gtk-update-icon-cache ]; then
		usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2>&1
	fi
}