Bug? claws-mail spam button

You have a problem with Salix? Post here and we'll do what we can to help.
Post Reply
User avatar
damNageHack
Posts: 663
Joined: 24. Sep 2009, 17:07

Bug? claws-mail spam button

Post 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
Last edited by damNageHack on 26. Nov 2009, 17:39, edited 1 time in total.
Image
This is the oppinion of the author, it does not force you to share and is signed automatically.
You are free to keep them all errors for your own. Linux is the best game I ever played.
User avatar
thenktor
Salix Wizard
Posts: 2426
Joined: 6. Jun 2009, 14:47
Location: Franconia
Contact:

Re: claws-mail spam button

Post by thenktor »

Your settings should behave like you want it. It seems to be a bug. :roll:
Image
burnCDDA (burns audio CDs)
geBIERt (German beer blog)
User avatar
damNageHack
Posts: 663
Joined: 24. Sep 2009, 17:07

Re: Bug? claws-mail spam button

Post 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
}

Image
This is the oppinion of the author, it does not force you to share and is signed automatically.
You are free to keep them all errors for your own. Linux is the best game I ever played.
Post Reply