debian/0000755000000000000000000000000012275701453007174 5ustar debian/sylpheed-plugins.docs0000644000000000000000000000003612253443714013340 0ustar plugin/attachment_tool/README debian/sylpheed.dirs0000644000000000000000000000012112253443714011665 0ustar /usr/bin /usr/lib /usr/share/applications /usr/share/man/man1 /usr/share/pixmaps debian/compat0000644000000000000000000000000212253443714010371 0ustar 9 debian/rules0000755000000000000000000000200012275646102010243 0ustar #!/usr/bin/make -f export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(\([0-9]\+\):\)\?\(.*\)-.*/\3/p' | sed 's,~,,') %: dh $@ --parallel --with autoreconf override_dh_auto_configure: dh_auto_configure -- \ --enable-gpgme \ --enable-ssl \ --enable-jpilot \ --enable-ldap \ --enable-ipv6 \ --enable-gtkspell \ --enable-oniguruma \ --disable-updatecheck \ --with-plugindir=/usr/lib/$(DEB_HOST_MULTIARCH)/sylpheed/plugins \ --with-manualdir=/usr/share/doc/sylpheed-doc/manual \ --with-faqdir=/usr/share/doc/sylpheed-doc/FAQ override_dh_auto_install: dh_auto_install $(MAKE) -C plugin/attachment_tool \ DESTDIR=$(CURDIR)/debian/tmp install-plugin rm -f $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la pod2man --release $(VERSION) -c 'User Manuals' \ debian/sylpheed.pod > debian/sylpheed.1 override_dh_strip: dh_strip --dbg-package=sylpheed-dbg debian/control0000644000000000000000000000674212275647346010622 0ustar Source: sylpheed Section: mail Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Ricardo Mones Uploaders: Paul Mangan , Gustavo Noronha Silva Build-Depends: debhelper (>= 9), libcompfaceg1-dev, libglib2.0-dev, libgtk2.0-dev, libpng-dev, libgpgme11-dev (>= 1.0.0), libssl-dev, libpisock-dev, libldap2-dev, flex | flex-old, bison, gettext, libreadline6-dev, libgtkspell-dev (>= 2.0), libonig-dev, libenchant-dev, libdbus-glib-1-dev, dh-autoreconf Standards-Version: 3.9.5 Homepage: http://sylpheed.sraoss.jp/en/ Vcs-Git: git://anonscm.debian.org/users/mones/sylpheed.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=users/mones/sylpheed.git Package: sylpheed Architecture: any Pre-Depends: ${misc:Pre-Depends}, multiarch-support Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: sylpheed-i18n, xfonts-100dpi | xfonts-75dpi | xfonts-100dpi-transcoded | xfonts-75dpi-transcoded, aspell-en | aspell-dictionary, ca-certificates Suggests: jpilot, sylpheed-doc (>= 20020420-3), claws-mail-tools, bogofilter, bsfilter, curl Provides: mail-reader, news-reader Description: Light weight e-mail client with GTK+ Sylpheed is an e-mail client which aims for: * Quick response * Graceful, and sophisticated interface * Easy configuration, intuitive operation * Abundant features The appearance and interface are similar to some popular e-mail clients for Windows, such as Outlook Express or so. The interface is also designed to emulate the mailers on Emacsen, and almost all commands are accessible with the keyboard. Package: sylpheed-dbg Architecture: any Priority: extra Section: debug Depends: ${misc:Depends}, sylpheed (= ${binary:Version}) Recommends: gdb Description: Debugging symbols for sylpheed, a GTK+ e-mail client This package contains debug symbols useful for debugging sylpheed with gdb or any compatible debugger. . It is also required if you intend to provide detailed backtraces for helping the maintainer and/or upstream to fix some bug. Package: sylpheed-i18n Architecture: all Section: localization Depends: ${misc:Depends}, sylpheed (>= ${binary:Version}) Description: Locale data for Sylpheed (i18n support) This package provides support for non-English interfaces in the Sylpheed mail client. Current supported locales are: be (Belarusian) bg (Bulgarian) cs (Czech) da (Danish) de (German) el (Greek) es (Spanish) et (Estonian) eu (Basque) fi (Finnish) fr (French) gl (Galician) hr (Croatian) hu (Hungarian) it (Italian) ja (Japanese) ko (Korean) lt (Lithuanian) nl (Dutch) pl (Polish) pt_BR (Brazilian Portuguese) ro (Romanian) ru (Russian) sk (Slovak) sl (Slovenian) sr (Serbian) sv (Swedish) tr (Turkish) uk (Ukrainian) vi (Vietnamese) zh_CN (Chinese) zh_TW (Taiwanese) Package: sylpheed-plugins Architecture: any Pre-Depends: ${misc:Pre-Depends}, multiarch-support Depends: ${shlibs:Depends}, ${misc:Depends}, sylpheed (= ${binary:Version}) Description: Loadable modules for extending Sylpheed features This package comprises all loadable plugins which are included with Sylpheed sources. Plugins extend Sylpheed by providing new features and/or capabilities not present in core application. . Currently only the unique existing plugin is included: Attachment Tool: a plugin for dealing with attachments in messages. debian/sylpheed-plugins.install0000644000000000000000000000004012253443714014051 0ustar usr/lib/*/sylpheed/plugins/*.so debian/patches/0000755000000000000000000000000012275646672010636 5ustar debian/patches/02manual.diff0000644000000000000000000000456112253443714013101 0ustar Subject: Show an alert if manual packages are not installed Author: Gustavo Noronha Forwarded: not-needed diff -urN sylpheed-3.1.0~beta1.orig/src/mainwindow.c sylpheed-3.1.0~beta1/src/mainwindow.c --- sylpheed-3.1.0~beta1.orig/src/mainwindow.c 2010-05-25 07:25:56.000000000 +0200 +++ sylpheed-3.1.0~beta1/src/mainwindow.c 2010-06-20 15:32:18.000000000 +0200 @@ -883,7 +883,10 @@ {N_("/_Help"), NULL, NULL, 0, ""}, {N_("/_Help/_Manual"), NULL, NULL, 0, ""}, {N_("/_Help/_Manual/_English"), NULL, manual_open_cb, MANUAL_LANG_EN, NULL}, + {N_("/_Help/_Manual/_French"), NULL, manual_open_cb, MANUAL_LANG_FR, NULL}, + {N_("/_Help/_Manual/_German"), NULL, manual_open_cb, MANUAL_LANG_DE, NULL}, {N_("/_Help/_Manual/_Japanese"), NULL, manual_open_cb, MANUAL_LANG_JA, NULL}, + {N_("/_Help/_Manual/_Spanish"), NULL, manual_open_cb, MANUAL_LANG_ES, NULL}, {N_("/_Help/_FAQ"), NULL, NULL, 0, ""}, {N_("/_Help/_FAQ/_English"), NULL, faq_open_cb, MANUAL_LANG_EN, NULL}, {N_("/_Help/_FAQ/_German"), NULL, faq_open_cb, MANUAL_LANG_DE, NULL}, diff -urN sylpheed-3.1.0~beta1.orig/src/manual.c sylpheed-3.1.0~beta1/src/manual.c --- sylpheed-3.1.0~beta1.orig/src/manual.c 2006-08-31 10:21:21.000000000 +0200 +++ sylpheed-3.1.0~beta1/src/manual.c 2010-06-20 15:32:18.000000000 +0200 @@ -60,6 +60,21 @@ lang_str = get_lang_str(lang); if (!lang_str) return; + { /* On Debian the manuals are on the sylpheed-doc package */ + gchar *file_path; + file_path = g_strconcat(MANUALDIR, G_DIR_SEPARATOR_S, + lang_str, G_DIR_SEPARATOR_S, + MANUAL_HTML_INDEX, NULL); + + if (!is_file_exist(file_path)) { + alertpanel_error("apt-get install sylpheed-doc"); + g_free(file_path); + return; + } + + g_free(file_path); + } + file_uri = g_strconcat("file://", #ifdef G_OS_WIN32 get_startup_dir(), @@ -83,6 +98,21 @@ lang_str = get_lang_str(lang); if (!lang_str) return; + { /* On Debian the FAQs are on the sylpheed-doc package */ + gchar *file_path; + file_path = g_strconcat(FAQDIR, G_DIR_SEPARATOR_S, + lang_str, G_DIR_SEPARATOR_S, + FAQ_HTML_INDEX, NULL); + + if (!is_file_exist(file_path)) { + alertpanel_error("apt-get install sylpheed-doc"); + g_free(file_path); + return; + } + + g_free(file_path); + } + file_uri = g_strconcat("file://", #ifdef G_OS_WIN32 get_startup_dir(), debian/patches/99_new_autotools.diff0000644000000000000000000000061012264555162014677 0ustar Index: sylpheed-3.4.0~beta5/configure.in =================================================================== --- sylpheed-3.4.0~beta5.orig/configure.in 2013-08-27 22:44:24.000000000 -0400 +++ sylpheed-3.4.0~beta5/configure.in 2014-01-12 13:09:50.272033834 -0500 @@ -71,7 +71,7 @@ AC_PROG_YACC AM_PROG_LIBTOOL -SYLPHEED_ACLOCAL_INCLUDE(ac) +AC_CONFIG_MACRO_DIRS([ac]) native_win32=no debian/patches/series0000644000000000000000000000046412275646731012053 0ustar 01default_browser_and_spool.diff 02manual.diff 03free_browsers_and_x_terminal_emulator.diff 04address_book.diff 05sensible_editor.diff 07escape_from_at_the_beginning.diff 09_exec_param_and_es_comment.diff 10use-panel-icon.patch 11use-theme-icon-for-win.patch 90fix_ftbfs_hurd_i386.diff 99_new_autotools.diff debian/patches/90fix_ftbfs_hurd_i386.diff0000644000000000000000000000432212253443714015373 0ustar Subject: Fix FTBFS on hurd-i386 due to rpath sylpheed currently FTBFS on hurd-i386 due to libtool spuriously adding an rpath to /usr/lib/i386-gnu. This was fixed upstream, sylpheed just needs to update. Author: Samuel Thibault Bug-Debian: http://bugs.debian.org/677351 Reviewed-by: Ricardo Mones Last-Update: 2013-05-29 diff --git a/configure b/configure index ad54b04..a02180d 100755 --- a/configure +++ b/configure @@ -5771,10 +5771,6 @@ freebsd* | dragonfly*) fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in @@ -5809,7 +5805,7 @@ irix5* | irix6* | nonstopux*) ;; # This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -8076,7 +8072,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; } lt_prog_compiler_static='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) @@ -8525,7 +8521,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie openbsd*) with_gnu_ld=no ;; - linux* | k*bsd*-gnu) + linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac @@ -9992,16 +9988,6 @@ freebsd* | dragonfly*) esac ;; -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. @@ -10103,7 +10089,7 @@ linux*oldld* | linux*aout* | linux*coff*) ;; # This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux need_lib_prefix=no need_version=no debian/patches/04address_book.diff0000644000000000000000000000151312253443714014257 0ustar Subject: fix small bug in addressbook window Author: Gustavo Noronha Silva Forwarded: yes diff -urN sylpheed-3.1.0beta6.orig/src/addressbook.c sylpheed-3.1.0beta6/src/addressbook.c --- sylpheed-3.1.0beta6.orig/src/addressbook.c 2010-12-22 03:04:32.000000000 +0100 +++ sylpheed-3.1.0beta6/src/addressbook.c 2010-12-24 22:36:26.000000000 +0100 @@ -1264,6 +1264,17 @@ if (new_compose) compose_block_modified(addrbook.target_compose); + /* + * nothing selected, but maybe there's something on the text entry + */ + if (node == NULL) { + gchar *addr; + addr = gtk_entry_get_text(GTK_ENTRY(addrbook.entry)); + if (addr) + compose_entry_append(addrbook.target_compose, addr, + (ComposeEntryType) data); + } + while( node ) { AddressObject *obj = node->data; Compose *compose = addrbook.target_compose; debian/patches/05sensible_editor.diff0000644000000000000000000000176312253443714015002 0ustar Subject: Replace gedit by sensible-editor Author: Ricardo Mones Forwarded: not-needed diff -urN sylpheed-3.1.0~beta1.orig/libsylph/prefs_common.c sylpheed-3.1.0~beta1/libsylph/prefs_common.c --- sylpheed-3.1.0~beta1.orig/libsylph/prefs_common.c 2010-06-07 09:33:02.000000000 +0200 +++ sylpheed-3.1.0~beta1/libsylph/prefs_common.c 2010-06-20 16:11:58.000000000 +0200 @@ -348,7 +348,7 @@ #ifdef G_OS_WIN32 {"mime_open_command", "notepad '%s'", &prefs_common.mime_open_cmd, #else - {"mime_open_command", "gedit '%s'", &prefs_common.mime_open_cmd, + {"mime_open_command", "sensible-editor '%s'", &prefs_common.mime_open_cmd, #endif P_STRING}, {"mime_command", NULL, &prefs_common.mime_cmd, P_STRING}, @@ -459,7 +459,7 @@ #ifdef G_OS_WIN32 {"ext_editor_command", "notepad '%s'", &prefs_common.ext_editor_cmd, #else - {"ext_editor_command", "gedit %s", &prefs_common.ext_editor_cmd, + {"ext_editor_command", "sensible-editor %s", &prefs_common.ext_editor_cmd, #endif P_STRING}, debian/patches/01default_browser_and_spool.diff0000644000000000000000000000141012253443714017036 0ustar Subject: Set default values for browser and spool path Author: Gustavo Noronha , Ricardo Mones Forwarded: not-needed diff -urN sylpheed-3.1.1.orig/libsylph/defs.h sylpheed-3.1.1/libsylph/defs.h --- sylpheed-3.1.1.orig/libsylph/defs.h 2011-02-25 07:51:47.000000000 +0100 +++ sylpheed-3.1.1/libsylph/defs.h 2011-05-09 01:35:25.000000000 +0200 @@ -101,13 +101,13 @@ #ifdef __APPLE__ # define DEFAULT_BROWSER_CMD "open '%s'" #else -# define DEFAULT_BROWSER_CMD "xdg-open '%s'" +# define DEFAULT_BROWSER_CMD "sensible-browser '%s'" #endif #ifdef _PATH_MAILDIR # define DEFAULT_SPOOL_PATH _PATH_MAILDIR #else -# define DEFAULT_SPOOL_PATH "/var/spool/mail" +# define DEFAULT_SPOOL_PATH "/var/mail" #endif #define BUFFSIZE 8192 debian/patches/09_exec_param_and_es_comment.diff0000644000000000000000000000116212253443714017123 0ustar Subject: Adds exec parameter and Spanish translation for comment From: Ricardo Mones diff -urN sylpheed-3.3.0beta2.orig/sylpheed.desktop sylpheed-3.3.0beta2/sylpheed.desktop --- sylpheed-3.3.0beta2.orig/sylpheed.desktop 2012-09-27 10:37:58.000000000 +0200 +++ sylpheed-3.3.0beta2/sylpheed.desktop 2012-09-28 11:58:22.000000000 +0200 @@ -10,7 +10,8 @@ Comment[tr]=E-Posta İstemcisi Comment[ru]=E-Mail клиент Comment[uk]=E-Mail клієнт -Exec=sylpheed +Comment[es]=Cliente de correo electrónico +Exec=sylpheed %u Icon=sylpheed MimeType=message/rfc822;x-scheme-handler/mailto; Terminal=false debian/patches/11use-theme-icon-for-win.patch0000644000000000000000000000167312275646354016226 0ustar Description: Use sylpheed theme icon if available in the theme. Bug: http://sylpheed.sraoss.jp/redmine/issues/87 Forwarded: yes Author: Julien Lavergne Last-Update: 2012-08-27 Index: sylpheed-3.4.0~beta7/src/main.c =================================================================== --- sylpheed-3.4.0~beta7.orig/src/main.c 2014-02-09 10:39:52.000000000 +0100 +++ sylpheed-3.4.0~beta7/src/main.c 2014-02-09 10:39:52.000000000 +0100 @@ -322,8 +322,15 @@ gtk_window_set_default_icon_list(iconlist); g_list_free(iconlist); #else - stock_pixbuf_gdk(NULL, STOCK_PIXMAP_SYLPHEED, &icon); - gtk_window_set_default_icon(icon); + if (gtk_icon_theme_has_icon(gtk_icon_theme_get_default(), "sylpheed")) + { + gtk_window_set_default_icon_name("sylpheed"); + } + else + { + stock_pixbuf_gdk(NULL, STOCK_PIXMAP_SYLPHEED, &icon); + gtk_window_set_default_icon(icon); + } #endif mainwin = main_window_create debian/patches/03free_browsers_and_x_terminal_emulator.diff0000644000000000000000000000315612253443714021447 0ustar Subject: Add more options available in Debian for browsing Author: Gustavo Noronha , Ricardo Mones Forwarded: not-needed diff -urN sylpheed-3.1.0~beta1.orig/src/prefs_common_dialog.c sylpheed-3.1.0~beta1/src/prefs_common_dialog.c --- sylpheed-3.1.0~beta1.orig/src/prefs_common_dialog.c 2010-06-07 10:44:59.000000000 +0200 +++ sylpheed-3.1.0~beta1/src/prefs_common_dialog.c 2010-06-20 15:56:52.000000000 +0200 @@ -2698,13 +2698,21 @@ _("(Default browser)"), #else DEFAULT_BROWSER_CMD, - "sensible-browser '%s'", + "xdg-open '%s'", + "iceweasel -remote 'openURL(%s,new-window)'", + "iceweasel '%s'", + "midori '%s'", + "arora '%s'", + "epiphany-browser --new-window '%s'", + "epiphany-browser --new-tab '%s'", + "galeon --new-window '%s'", + "galeon --new-tab '%s'", "firefox -remote 'openURL(%s,new-window)'", "firefox '%s'", "mozilla -remote 'openURL(%s,new-window)'", "mozilla '%s'", - "rxvt -e w3m '%s'", - "rxvt -e lynx '%s'", + "x-terminal-emulator -e w3m '%s'", + "x-terminal-emulator -e lynx '%s'", #endif NULL); uri_entry = GTK_COMBO (uri_combo)->entry; @@ -2727,8 +2735,9 @@ "kedit %s", "emacs %s", "xemacs %s", - "rxvt -e jed %s", - "rxvt -e vi %s", + "gvim -f %s", + "x-terminal-emulator -e jed %s", + "x-terminal-emulator -e vi %s", #endif NULL); exteditor_entry = GTK_COMBO (exteditor_combo)->entry; debian/patches/10use-panel-icon.patch0000644000000000000000000000166012014517721014621 0ustar Description: Enable specific panel icon from the icon theme if available. Bug: http://sylpheed.sraoss.jp/redmine/issues/87 Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/sylpheed/+bug/1023484 Forwarded: yes Author: Julien Lavergne Last-Update: 2012-08-20 --- sylpheed-3.2.0.orig/src/trayicon.c +++ sylpheed-3.2.0/src/trayicon.c @@ -108,7 +108,14 @@ TrayIcon *trayicon_create(MainWindow *ma GdkPixbuf *pixbuf; stock_pixbuf_gdk(NULL, TRAYICON_IMAGE, &pixbuf); - trayicon.status_icon = gtk_status_icon_new_from_pixbuf(pixbuf); + if (gtk_icon_theme_has_icon(gtk_icon_theme_get_default(), "sylpheed-panel")) + { + trayicon.status_icon = gtk_status_icon_new_from_icon_name("sylpheed-panel"); + } + else + { + trayicon.status_icon = gtk_status_icon_new_from_pixbuf(pixbuf); + } g_signal_connect(G_OBJECT(trayicon.status_icon), "activate", G_CALLBACK(trayicon_activated), mainwin); debian/patches/07escape_from_at_the_beginning.diff0000644000000000000000000000145712253443714017461 0ustar Subject: escape '^From ' lines for not breaking GPG MIME signatures From: Darren Salt Reviewed-by: Francesco Poli Bug-Debian: http://bugs.debian.org/485855 diff -urN sylpheed-3.1.0~beta1.orig/libsylph/quoted-printable.c sylpheed-3.1.0~beta1/libsylph/quoted-printable.c --- sylpheed-3.1.0~beta1.orig/libsylph/quoted-printable.c 2006-08-31 10:21:16.000000000 +0200 +++ sylpheed-3.1.0~beta1/libsylph/quoted-printable.c 2010-06-20 16:22:30.000000000 +0200 @@ -52,6 +52,13 @@ if (*inp == '\r') inp++; inp++; + if (strncmp(inp, "From ", 5) == 0) { + *outp++ = '='; + *outp++ = '4'; + *outp++ = '6'; + len += 3; + inp++; + } } else if (ch == '\t' || ch == ' ') { if (IS_LBREAK(inp + 1)) { SOFT_LBREAK_IF_REQUIRED(3); debian/sylpheed-debian.xpm0000644000000000000000000001042212253443714012755 0ustar /* XPM */ static char *sylpheed-debian[] = { /* columns rows colors chars-per-pixel */ "32 32 130 2", " c #000000", ". c #0C0C0C", "X c #151515", "o c #1B1B1B", "O c #252425", "+ c #2C2C2C", "@ c #353535", "# c #3B3B3B", "$ c #7B2F32", "% c #444444", "& c #4E4E4E", "* c #565656", "= c #5B5B5B", "- c #625E73", "; c #656565", ": c #6B6B6B", "> c #737473", ", c #777678", "< c #7C7C7C", "1 c #7F7E86", "2 c #7D81CD", "3 c #8C4A4C", "4 c #965556", "5 c #925658", "6 c #985B5D", "7 c #936364", "8 c #9C6062", "9 c #9D6B6C", "0 c #A06B6D", "q c #A37374", "w c #AB7C7E", "e c #838383", "r c #8B8B8B", "t c #939393", "y c #9B9B9B", "u c #A28283", "i c #A6898A", "p c #AC8384", "a c #AA8C8C", "s c #AC8F90", "d c #AF9696", "f c #B08B8C", "g c #B09697", "h c #B49A9B", "j c #BB9B9C", "k c #A2A3A2", "l c #A5A3AB", "z c #ACACAC", "x c #A8A6B3", "c c #ADAABB", "v c #B5A2A2", "b c #BBA2A3", "n c #B4B4B4", "m c #BEB0B0", "M c #BCBCBC", "N c #8286CF", "B c #8387D0", "V c #8488D0", "C c #898DD2", "Z c #8F93D4", "A c #9296D5", "S c #9B9ED9", "D c #9DA1DA", "F c #A5A9DC", "G c #ABAEDE", "H c #AEB7DD", "J c #BCBAC4", "K c #BEBACC", "L c #BABCDA", "P c #AFB2E1", "I c #B1B3E1", "U c #B5BCE1", "Y c #B9BBE4", "T c #BEC2E4", "R c #C1A3A4", "E c #C1ABAC", "W c #C3B2B2", "Q c #C5B8B9", "! c #CDB7B8", "~ c #D3BFBF", "^ c #C2BFD0", "/ c #C4C4C4", "( c #CDC4C4", ") c #CBCBCB", "_ c #CDCDDC", "` c #D1C6C6", "' c #D2CBCB", "] c #D1CEDE", "[ c #D3D3D3", "{ c #D6D5D8", "} c #DAD6D6", "| c #DBDBDB", " . c #C0C4E5", ".. c #C3C5E8", "X. c #C4CBE5", "o. c #C7C9EA", "O. c #D4D5E4", "+. c #D2D4EB", "@. c #D6DBE9", "#. c #D9D7E0", "$. c #DAD6ED", "%. c #DEDEE3", "&. c #D7D9F0", "*. c #DDD6F8", "=. c #DBD9F3", "-. c #DEE0EA", ";. c #E2DBDB", ":. c #E2DFE0", ">. c #E0DDEB", ",. c #E2DEF5", "<. c #E3DDFB", "1. c #E0E0DF", "2. c #E3E3E3", "3. c #E4E4EC", "4. c #E7E8EE", "5. c #ECECEC", "6. c #E4E2F3", "7. c #E6E1FB", "8. c #E8E6F3", "9. c #EAE6FA", "0. c #ECEBF4", "q. c #EFF0EF", "w. c #EEF0F4", "e. c #F0EEEE", "r. c #F0EFF4", "t. c #F0EEFB", "y. c #F4F4F4", "u. c #F6F5FC", "i. c #FDFDFD", "p. c None", /* pixels */ "p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.o o & e : . p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.p.p.p.p.o o O > 1 z :.| 5.u.1.O p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.. O > e r { | >.r.t.9.r.r.4.8.,.- p. . p.p.p.p.p.p.p.", "p.p.p.p.> 3.u.u.t.<.7.7.<.,.,.-.,.,.3.>.1 % > ; o p.p.p.p.p.p.p.", "p.p.p.p.& 8.7.<.<.,.*.,.8.8.0.0.3.[ M k z [ } k % . p.p.p.p.p.p.", "p.p.p.p.o #.9.t.0.0.0.y.0.3.#.J l z ) @.y.y.M [ e X p.p.p.p.p.p.", "p.p.p.p.o | u.8.0.7.,.+.K l l J 2.i.i.T 8.2.n 5.M @ p.p.p.p.p.", "p.p.p.p.p.z 9.*.$.^ x l M -.-.o.u.+.H C 6.M [ 2.| : . p.p.p.p.p.", "p.p.p.p.p., _ c l n } 3.&.6.Y S Z B S F _ n 2.2.2.z + p.p.p.p.p.", "p.p.. X @ < n ) L H u.&.F A C 2 Z F T 4.M ) 2.2.| ) = . p.p.p.p.", "p.o = t / 5.i.$.B ..I 2 C C T L T +.-.} n 2.| | | | t o p.p.p.p.", "p.+ y | u.i.i.8.G D D N ..T X.T 5.q.q.n ) 2.| | [ [ M % . p.p.p.", "p.o t / n [ y.&.C I 9.+.t.H @.y.q.5.[ n | | | [ [ [ ) < X p.p.p.", "p.. < u.0.) M M ] i.i.u.X.O.e.;.| 2.n ) 1.| [ [ [ ) ) z # . p.p.", "p. % 2.i.i.y.| M n | -.+.e.j 3 4 p z | | } [ ) ) ) / / ; X p.p.", "p.p.O M i.i.i.i.i.2./ n / R $ 7 p 3 h | } [ ) ) ) / / M y + p.p.", "p.p.X r i.i.i.i.i.i.u.2.) 7 5 ! ~ 9 p | [ [ ) ) / / M M n * . p.", "p.p.. * 5.i.i.i.y.y.y.q.5.R 6 R b 0 a } [ ) ) / / M M M n e O p.", "p.p.p.+ ) i.i.i.y.y.q.5.5.;.w 8 3 q ( [ ) ) / / / M n n n y # . ", "p.p.p.X y i.i.y.y.q.5.2.2.2.} b j ' [ ) / ) / M M M z t : % O ", "p.p.p.. ; y.y.q.q.5.5.2.[ W v u v ) ) ) / / / n y , & + X . p.", "p.p.p.p.# [ y.y.5.;.` W h a d i h ) ) ) / z e = @ o . p.p.p.p.", "p.p.p.p.o z 5.` m j h g h m Q ) [ ) n t ; # o . p.p.p.p.p.p.p.", "p.p.p.p.. > ;.b g h a b ) [ [ / y > % O . . p.p.p.p.p.p.p.p.p.p.", "p.p.p.p. % [ b b h d Q ) n e & + X . p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.O z ( Q ( n r = + X . p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.X < ) y : # o . p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.. @ % o . . p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.", "p.p.p.p.p.p.. p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p." }; debian/clean0000644000000000000000000000002212253443714010172 0ustar debian/sylpheed.1 debian/dirs0000644000000000000000000000011612253443714010055 0ustar usr/bin usr/share/pixmaps usr/share/doc/sylpheed/tools usr/share/applications debian/copyright0000644000000000000000000000424512253443714011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Sylpheed Upstream-Contact: ML , Hiroyuki Yamamoto Source: http://sylpheed.sraoss.jp/en/download.html Files: * Copyright: 1999-2012, Hiroyuki Yamamoto License: GPL-2+ with OpenSSL exemption Files: src/colorlabel.[ch] src/action.[ch] src/prefs_actions.[ch] Copyright: 1999-2011, Hiroyuki Yamamoto & The Sylpheed Claws Team License: GPL-2+ Files: src/addr_compl.[ch] src/gtkshruler.[ch] Copyright: 2000-2005, Alfons Hoogervorst & The Sylpheed Claws Team License: GPL-2+ Files: src/addrbook.[ch] src/addrcache.[ch] src/addressadd.[ch] src/addrindex.[ch] src/addritem.c src/editbook.[ch] src/editgroup.h src/editjpilot.[ch] src/editldap* src/editvcard.[ch] src/importldif.[ch] src/jpilot.[ch] src/ldif.[ch] src/mgutils.[ch] src/syldap.[ch] src/vcard.[ch] Copyright: 2001, Match Grun License: GPL-2+ Files: src/passphrase.[ch] src/rfc2015.[ch] src/select-keys.[ch] src/sigstatus.[ch] Copyright: 2001, Werner Koch (dd9jn) License: GPL-2+ Files: src/prefs_template.[ch] src/template.[ch] Copyright: 2001, Alexander Barinov License: GPL-2+ Files: src/eggtrayicon.[ch] Copyright: 2002, Anders Carlsson License: LGPL-2+ Files: src/simple-gettext.c Copyright: 1995-1999, Free Software Foundation, Inc. 1999, Ulrich Drepper License: GPL-2+ Files: debian/* Copyright: 2000-2001, Takuo KITAME 2001-2004, Gustavo Noronha Silva 2004-2012, Ricardo Mones License: GPL-2+ License: GPL-2+ The full text of the GPL-2 license is available in /usr/share/common-licenses/GPL-2 on Debian systems. License: LGPL-2+ The full text of the LGPL-2 license is available in /usr/share/common-licenses/LGPL-2 on Debian systems. License: GPL-2+ with OpenSSL exemption Sylpheed is Copyright 1999-2012 by Hiroyuki Yamamoto and Sylpheed Development Team, and distributed under the GNU GPL (COPYING). . Specific permission is granted for the GPLed code in this distribition to be linked to OpenSSL without invoking GPL clause 2(b). . LibSylph is distributed under the GNU LGPL (COPYING.LIB). debian/sylpheed-i18n.install0000644000000000000000000000002212253443714013147 0ustar /usr/share/locale debian/menu0000644000000000000000000000041212253443714010057 0ustar ?package(sylpheed):\ needs="X11"\ section="Applications/Network/Communication"\ title="Sylpheed"\ longtitle="Sylpheed Lightweight GTK+ Email Client"\ hints="GTK+-based Mail and News Client"\ icon="/usr/share/pixmaps/sylpheed-debian.xpm"\ command="/usr/bin/sylpheed" debian/changelog0000644000000000000000000016704112275647303011062 0ustar sylpheed (3.4.0~beta7-1ubuntu1) trusty; urgency=low * Merge with Debian unstable. Ubuntu remaining changes: * debian/rules: - Add --disable-updatecheck flag to disable update check and remove its spam. - Use dh-autoreconf, resolving FTBFS on ppc64el. * debian/control: - Build-depends on dh-autoreconf. * debian/patches: - 10use-panel-icon.patch : Enable specific panel icon from the icon theme if available (LP: #1023484). - 11use-theme-icon-for-win.patch: Use theme icon if available in the theme. - 99_new_autotools.diff: Update autoconf syntax for macros. * debian/sylpheed.links - Add links for the shipped icons in hicolor directory, so the fallback icons are not the broken one. -- Julien Lavergne Sun, 09 Feb 2014 10:47:39 +0100 sylpheed (3.4.0~beta7-1) unstable; urgency=medium * New upstream development release -- Ricardo Mones Mon, 16 Dec 2013 01:21:19 +0100 sylpheed (3.4.0~beta6-1) unstable; urgency=low * New upstream development release - Includes updated config.{sub,guess} (Closes: #727981) * debian/rules - Remove unrecognized option * debian/control - Update Vcs-* fields to use canonical URLs - Update Standards-Verson to 3.9.5 (no other changes required) - Update sylpheed-i18n long description to add Finnish and Basque -- Ricardo Mones Wed, 30 Oct 2013 01:29:01 +0100 sylpheed (3.4.0~beta5-1ubuntu3) trusty; urgency=low * Fix incorrect usage of dh. - Update autoconf syntax for macros. -- Daniel T Chen Sun, 12 Jan 2014 12:59:07 -0500 sylpheed (3.4.0~beta5-1ubuntu2) trusty; urgency=low * Use dh-autoreconf, resolving FTBFS on ppc64el. -- Daniel T Chen Fri, 10 Jan 2014 11:04:10 -0500 sylpheed (3.4.0~beta5-1ubuntu1) saucy; urgency=low * New upstream release. -- Julien Lavergne Wed, 28 Aug 2013 22:38:31 +0200 sylpheed (3.4.0~beta4-1ubuntu1) saucy; urgency=low * Merge with Debian unstable. Ubuntu remaining changes: * debian/rules: - Add --disable-updatecheck flag to disable update check and remove its spam. * debian/patches: - 10use-panel-icon.patch : Enable specific panel icon from the icon theme if available (LP: #1023484). - 11use-theme-icon-for-win.patch: Use theme icon if available in the theme. * debian/sylpheed.links - Add links for the shipped icons in hicolor directory, so the fallback icons are not the broken one. -- Julien Lavergne Sun, 30 Jun 2013 19:29:17 +0200 sylpheed (3.4.0~beta4-1) unstable; urgency=low * New upstream development release * debian/patches/90fix_ftbfs_hurd_i386.diff - Update patch to cope with configure changes -- Ricardo Mones Wed, 29 May 2013 12:53:35 +0200 sylpheed (3.4.0~beta3-1) experimental; urgency=low * New upstream development release -- Ricardo Mones Tue, 02 Apr 2013 00:11:45 +0200 sylpheed (3.4.0~beta2-1) experimental; urgency=low * New upstream development release -- Ricardo Mones Sun, 17 Feb 2013 16:24:52 +0100 sylpheed (3.4.0~beta1-1) experimental; urgency=low * New upstream development release * debian/sylpheed.pod, debian/rules, debian/clean - Update manpage and rewritten into pod format. * debian/sylpheed.1 - Removed, generated from pod file now. -- Ricardo Mones Sun, 03 Feb 2013 16:56:50 +0100 sylpheed (3.3.0-1ubuntu1) raring; urgency=low * Merge with Debian unstable. Ubuntu remaining changes: * debian/rules: - Add --disable-updatecheck flag to disable update check and remove its spam. * debian/patches: - 10use-panel-icon.patch : Enable specific panel icon from the icon theme if available (LP: #1023484). - 11use-theme-icon-for-win.patch: Use theme icon if available in the theme. * debian/sylpheed.links - Add links for the shipped icons in hicolor directory, so the fallback icons are not the broken one. -- Julien Lavergne Sat, 29 Dec 2012 14:51:05 +0100 sylpheed (3.3.0-1) unstable; urgency=low * New upstream release * debian/rules - Enable hardening flags (Closes: #678114) thanks to Hideki Yamane. -- Ricardo Mones Wed, 14 Nov 2012 10:19:02 +0100 sylpheed (3.3.0~rc0-1) experimental; urgency=low * New upstream development release -- Ricardo Mones Mon, 05 Nov 2012 12:43:36 +0100 sylpheed (3.3.0~beta2-1) experimental; urgency=low * New upstream development release * debian/patches/08x_scheme_handler_and_es_comment.diff - Removed, scheme handler already upstream * debian/patches/09_exec_param_and_es_comment.diff - Added with remaining changes -- Ricardo Mones Mon, 01 Oct 2012 02:26:26 +0200 sylpheed (3.3.0~beta1-1) experimental; urgency=low * New upstream development release -- Ricardo Mones Wed, 01 Aug 2012 00:29:35 +0200 sylpheed (3.2.0-1ubuntu4) quantal; urgency=low * debian/sylpheed.links - Add links for the shipped icons in hicolor directory, so the fallback icons are not the broken one. -- Julien Lavergne Sat, 08 Sep 2012 14:22:45 +0200 sylpheed (3.2.0-1ubuntu3) quantal; urgency=low * debian/patches: - 11use-theme-icon-for-win.patch: Use theme icon if available in the theme. -- Julien Lavergne Tue, 28 Aug 2012 22:34:25 +0200 sylpheed (3.2.0-1ubuntu2) quantal; urgency=low * debian/patches: - 10use-panel-icon.patch : Enable specific panel icon from the icon theme if available (LP: #1023484). -- Julien Lavergne Mon, 20 Aug 2012 22:36:42 +0200 sylpheed (3.2.0-1ubuntu1) quantal; urgency=low * Merge from Debian unstable. Remaining change: - debian/rules: --disable-updatecheck -- Logan Rosen Wed, 11 Jul 2012 12:23:31 -0400 sylpheed (3.2.0-1) unstable; urgency=low * New upstream release * debian/rules - Enable parallel building - Fix missing new line escape in override_dh_auto_configure -- Ricardo Mones Fri, 29 Jun 2012 10:15:36 +0200 sylpheed (3.2.0~rc0-1ubuntu1) quantal; urgency=low * Resynchronize with Debian. Remaining change: - debian/rules: --disable-updatecheck -- Jeremy Bicha Mon, 25 Jun 2012 15:41:34 -0400 sylpheed (3.2.0~rc0-1) unstable; urgency=low * New upstream candidate release -- Ricardo Mones Mon, 25 Jun 2012 11:59:25 +0200 sylpheed (3.2.0~beta9-1) unstable; urgency=medium * New upstream beta release * debian/patches/90fix_ftbfs_hurd_i386.diff - Added to fix FTBFS in hurd-i386 due to rpath, original patch by Samuel Thibault (Closes: #677351) - Urgency set to medium because of important severity bug * debian/sylpheed.docs.in, debian/create-docs-sh - Removed leftovers from pre-dh packaging * debian/sylpheed.docs - Added historical NEWS files -- Ricardo Mones Mon, 18 Jun 2012 22:39:57 +0200 sylpheed (3.2.0~beta8-1) unstable; urgency=low * New upstream beta release * debian/patches/09fix_pointer_cast_size_mismatch.diff - Removed, applied upstream * debian/control - Add curl to suggested packages (used by update checking) -- Ricardo Mones Thu, 07 Jun 2012 14:49:51 +0200 sylpheed (3.2.0~beta7-1) unstable; urgency=low * New upstream beta release - Includes corrected Glib includes (Closes: #665614) * debian/README.Debian - Add details about supported mbox format (Closes: #295435) * debian/compat, debian/control - Upgrade compatibility level to 9 - Add Pre-Depends on ${misc:Pre-Depends} and multiarch-support to packages containing shared libs - Remove Breaks/Replaces: conflicting versions are behind oldstable * debian/sylpheed.install, debian/sylpheed-plugins.install - Support multiarch triplets for files under usr/lib/ * debian/rules - Use $(DEB_HOST_MULTIARCH) to set plugin directory * debian/patches/09fix_pointer_cast_size_mismatch.diff - Updated to use Glib macros as suggested by upstream -- Ricardo Mones Sun, 15 Apr 2012 01:14:52 +0200 sylpheed (3.2.0~beta6-1) unstable; urgency=low * New upstream beta release * debian/control - Build-Depends: change libpng12-dev to libpng-dev (Closes: #662517) - Standards-Version: set to 3.9.3 (no other changes) * debian/copyright - Update format URL to comply with new policy; bump year - Remove useless Copyright from header; add author to Upstream-Contact -- Ricardo Mones Mon, 05 Mar 2012 12:11:40 +0100 sylpheed (3.2.0~beta5-1) unstable; urgency=low * New upstream beta release * debian/patches/09fix_pointer_cast_size_mismatch.diff - Fix a couple of warnings (thanks buildlogcheck) -- Ricardo Mones Thu, 29 Dec 2011 00:25:28 +0100 sylpheed (3.2.0~beta4-1) unstable; urgency=low * New upstream beta release * debian/copyright - Remove commas from file lists and move all licenses to their own standalone paragraph (thanks lintian) * debian/control - Replace conflicts with breaks -- Ricardo Mones Sat, 03 Dec 2011 22:28:08 +0100 sylpheed (3.2.0~beta3-1) unstable; urgency=low * New upstream beta release * debian/control - Development moved to git.debian.org: added Vcs-* headers -- Ricardo Mones Thu, 08 Sep 2011 14:51:53 +0200 sylpheed (3.2.0~beta2-1) unstable; urgency=low * New upstream beta release - Uses GTK+ theme for attachment buttons (Closes: #633642) - Labels 'Up'/'Down' removed in filter preferences (Closes: #551105) * debian/rules - Remove unneeded *.la files (Closes: #633193) -- Ricardo Mones Sat, 13 Aug 2011 12:04:19 +0200 sylpheed (3.2.0~beta1-1) unstable; urgency=low * New upstream beta release - Fixes "'queue' deletion corrupts header of 'trash' copy" (Closes: #493546) * debian/control - Updated Standards-Version to 3.9.2 (no other changes required) -- Ricardo Mones Sun, 03 Jul 2011 02:17:57 +0200 sylpheed (3.1.1-1) unstable; urgency=low * New upstream release - Fixes crash updating summary view while receiving (Closes: #611855) - Fixes undefined symbol reference with newer gcc by including required libraries when building (Closes: #622580, #556480) * debian/copyright - Update format and review file stanzas to follow DEP5 * debian/patches/01default_browser_and_spool.diff - Regenerated to cope with upstream modifications in libsylph/defs.h -- Ricardo Mones Mon, 09 May 2011 01:50:45 +0200 sylpheed (3.1.0-1) unstable; urgency=low * New upstream release (Closes: #567425) * debian/patches/08x_scheme_handler_and_es_comment.diff - Regenerated for this version because of upstream changes -- Ricardo Mones Mon, 07 Feb 2011 00:35:26 +0100 sylpheed (3.1.0~rc0-1) experimental; urgency=low * New upstream release candidate * debian/patches/08x_scheme_handler_and_es_comment.diff - Add x-scheme-handler (Closes: #610343) and Spanish comment -- Ricardo Mones Sun, 30 Jan 2011 22:12:32 +0100 sylpheed (3.1.0~beta7-1) experimental; urgency=low * New upstream beta release -- Ricardo Mones Sat, 22 Jan 2011 12:35:12 +0100 sylpheed (3.1.0~beta6-1) experimental; urgency=low * New upstream beta release * debian/patches/08fix_plugin_h.diff - Patch removed, already incorporated upstream * debian/patches/04address_book.diff - Regenerated patch to cope with upstream changes -- Ricardo Mones Sat, 25 Dec 2010 12:51:09 +0100 sylpheed (3.1.0~beta4-1) experimental; urgency=low * New upstream beta release * debian/patches/08fix_plugin_h.diff - Small patch to fix typo in plugin.h declaration -- Ricardo Mones Thu, 09 Dec 2010 01:27:43 +0100 sylpheed (3.1.0~beta3-1) experimental; urgency=low * New upstream beta release * debian/control - Bumped Standards-Version to 3.9.1 (no other changes) - Updated -i18n description to add existing Belarusian locale * debian/sylpheed.install - Install only libraries in main package, not plugins * debian/control, debian/rules, debian/sylpheed-plugins.* - Added new sylpheed-plugins package with attachment_tool plugin * debian/sylpheed.1 - Updated list of options and obsolete email address -- Ricardo Mones Tue, 31 Aug 2010 23:18:14 +0200 sylpheed (3.1.0~beta2-1) experimental; urgency=low * New upstream beta release * debian/control - Bumped Standards-Version (no other changes required) -- Ricardo Mones Sat, 17 Jul 2010 12:02:11 +0200 sylpheed (3.1.0~beta1-1) experimental; urgency=low * New upstream beta release * debian/patches/01default_browser_and_spool.diff - Split from 03, updated to reflect new upstream defaults * debian/patches/03free_browsers_and_x_terminal_emulator.diff - Added more browsers: iceweasel, epiphany-browser, midori and arora * debian/patches/06ldap_deprecated.diff - Removed, included upstream * debian/patches/series, debian/patches/*.diff - Updated series, regenerated all remaining patches * debian/copyright - Updated date ranges * debian/README.source - Removed, not needed anymore -- Ricardo Mones Sun, 20 Jun 2010 19:23:18 +0200 sylpheed (3.0.2-1) unstable; urgency=low * New upstream release * Switch to dpkg-source 3.0 (quilt) format * debian/patches/*.diff - Regenerated patches and documented following DEP3 -- Ricardo Mones Sat, 10 Apr 2010 18:50:33 +0200 sylpheed (3.0.1-1) unstable; urgency=low * New upstream release -- Ricardo Mones Sun, 21 Mar 2010 11:10:31 +0100 sylpheed (3.0.0-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 26 Feb 2010 00:54:02 +0100 sylpheed (3.0.0~rc0-1) unstable; urgency=low * New upstream release (development) -- Ricardo Mones Fri, 19 Feb 2010 10:23:15 +0100 sylpheed (3.0.0~beta8-2) unstable; urgency=low * New upstream release (development) * debian/control - Added libdbus-glib-1-dev to build-depends (Closes: #565535) -- Ricardo Mones Sun, 14 Feb 2010 17:13:55 +0100 sylpheed (3.0.0~beta7-1) unstable; urgency=low * New upstream release (development) * debian/control - Bumped Standards-Version to 3.8.4 (no other changes required) * patches/07escape_from_at_the_beginning.diff - New patch to escape lines beginning with From (Closes: #485855) Thanks to Darren Salt and Francesco Poli for the contribution. -- Ricardo Mones Mon, 01 Feb 2010 18:54:20 +0100 sylpheed (3.0.0~beta6-1) unstable; urgency=low * New upstream release (development) * debian/control - Removed metamail recommend (Closes: #562219) -- Ricardo Mones Thu, 14 Jan 2010 19:21:40 +0100 sylpheed (3.0.0~beta4-1) unstable; urgency=low * New upstream release (development) * debian/control - Point Homepage to the English version of the site -- Ricardo Mones Thu, 17 Dec 2009 17:21:38 +0100 sylpheed (3.0.0~beta3+svn2374-1) experimental; urgency=low * Latest subversion upload (Closes: #355192) -- Ricardo Mones Tue, 08 Dec 2009 13:03:21 +0100 sylpheed (3.0.0~beta3-1) unstable; urgency=low * New upstream release (development) * debian/patches/*.diff - Add brief comments to existing patches -- Ricardo Mones Fri, 04 Dec 2009 00:54:23 +0100 sylpheed (2.7.1-2) unstable; urgency=low * debian/control - Fixed -i18n section to localization - Updated Standards-Version to 3.8.3, no other changes - Fixed required version of debhelper as suggested by lintian - Use libreadline6-dev now we have it in unstable (thanks doko) * README.source - Added file pointing out quilt usage -- Ricardo Mones Sat, 10 Oct 2009 11:43:28 +0200 sylpheed (2.7.1-1) unstable; urgency=low * New upstream release * debian/rules, debian/sylpheed* - Repackaged using debhelper sequencer * debian/control - Build-Depends: added quilt for patching, removed cdbs - Bumped Standards-Version to 3.8.2, compat level 7 * debian/copyright - Simplified accordingly current DEP5 (allows removal of old lintian override for OpenSSL exception) * debian/sylpheed.lintian-overrides - Silence warnings for the new private shared libraries which are not designed to be in a development package but for being used by the host binary and (future) plugins * debian/README.Debian - Add a note about managing the new "auto update check" option -- Ricardo Mones Thu, 13 Aug 2009 22:23:19 +0200 sylpheed (2.6.0-3) unstable; urgency=low * debian/control - Added ca-certificates to recomends. This prevents asking for acepting server certificates indefinitely, reported in ML: http://www.tmtm.org/cgi-bin/w3ml/sylpheed/msg/32944 - Make package lintian clean: updated Standards-Version (no other changes required), added misc:Depends to all packages, set -dbg package section to debug * debian/copyright - Update year to current -- Ricardo Mones Fri, 01 May 2009 17:34:21 +0200 sylpheed (2.6.0-2) unstable; urgency=low * Upload to unstable (Closes: #326073, #499306, #507977) * debian/control - Improve debugging package description -- Ricardo Mones Sun, 01 Mar 2009 19:09:52 +0100 sylpheed (2.6.0-1) experimental; urgency=low * New upstream release * debian/control - Suggest a couple of bayesian filters (Closes: #507977) -- Ricardo Mones Thu, 25 Dec 2008 02:12:19 +0100 sylpheed (2.6.0~rc0-1) experimental; urgency=low * New upstream release (development) * debian/get-version.sh, debian/watch - Reflect upstream usage for first rc tarball's names -- Ricardo Mones Sun, 07 Dec 2008 12:31:24 +0100 sylpheed (2.6.0~beta2-1) experimental; urgency=low * New upstream release (development) * debian/README.Debian - Reorganised a bit and added explanation and references for encoding issues when using a external editor (Closes: #326073) * debian/control - Suggest claws-mail-tools instead recommending (Closes: #499306) -- Ricardo Mones Mon, 17 Nov 2008 14:00:51 +0100 sylpheed (2.6.0~beta1-1) experimental; urgency=low * New upstream release (development) * debian/control - Add Build-Depends for new Enchant support, removed for aspell * debian/patches/01configure_aspell_lib.diff, debian/patches/01configure_in_aspell_check.diff - Removed as they're no longer needed -- Ricardo Mones Tue, 30 Sep 2008 12:59:10 +0200 sylpheed (2.5.0-2) unstable; urgency=low * debian/control - Added new sylpheed-dbg package for helping debugging -- Ricardo Mones Thu, 24 Jul 2008 08:50:28 +0200 sylpheed (2.5.0-1) unstable; urgency=low * New upstream release * debian/get-version.sh - Remove version tweaking * debian/control - Update Standards-Versions (no further changes required) * debian/copyright - Fix typo - debian/rules - Add lintian override for 'possible-gpl-code-linked-with-openssl' because copyright notice is not detected by lintian -- Ricardo Mones Wed, 18 Jun 2008 09:45:00 +0200 sylpheed (2.5.0~rc2-1) unstable; urgency=high * New upstream release * debian/control, patches/01configure_aspell_lib.diff - Force aspell lib (gtkspell removed support) (Closes: #483334) * patches/01condfigure_in_aspell_check.diff - A real fix for checking for aspell (to be sent upstream) -- Ricardo Mones Sun, 08 Jun 2008 22:52:10 +0200 sylpheed (2.5.0~rc0-1) unstable; urgency=low * New upstream release * debian/control - Added Homepage field with current homepage * debian/get-version.sh - Temporary tweak to get the real upstream version -- Ricardo Mones Thu, 22 May 2008 18:41:02 +0300 sylpheed (2.5.0~beta3-1) unstable; urgency=low * New upstream release * debian/copyright - Fixed a couple of typos -- Ricardo Mones Fri, 25 Apr 2008 10:58:56 +0200 sylpheed (2.5.0~beta2-1) unstable; urgency=low * New upstream release * debian/copyright - Switched to machine parseable copyright format * debian/README.Debian - Updated non-alternative names and libonig usage status * debian/rules - Fixed desktop file location (thanks lintian!) -- Ricardo Mones Tue, 15 Apr 2008 15:31:39 +0200 sylpheed (2.5.0~beta1-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 29 Feb 2008 10:12:09 +0100 sylpheed (2.4.8-2) unstable; urgency=low * debian/patches/06ldap_deprecated.diff - Allow deprecated LDAP API calls (Closes: #463366) patch by Dann Frazier -- Ricardo Mones Mon, 18 Feb 2008 01:37:57 +0100 sylpheed (2.4.8-1) unstable; urgency=low * New upstream release * debian/control - Update Standards-Version to 3.7.3 * debian/rules - Remove empty directory (thanks lintian!) -- Ricardo Mones Tue, 25 Dec 2007 21:04:11 +0100 sylpheed (2.4.7-1) unstable; urgency=low * New upstream release -- Ricardo Mones Thu, 04 Oct 2007 13:24:37 +0200 sylpheed (2.4.6-2) unstable; urgency=low * debian/menu - Fixed new menu system subsection name (Closes: #444892) -- Ricardo Mones Wed, 03 Oct 2007 01:22:11 +0200 sylpheed (2.4.6-1) unstable; urgency=low * New upstream release -- Ricardo Mones Wed, 19 Sep 2007 12:36:55 +0200 sylpheed (2.4.5-1) unstable; urgency=low * New upstream release * debian/watch - Fixed URL (based on patch by Hideki Yamane) (Closes: #440321) * debian/menu - Fixed section name according new menu structure; added longtitle -- Ricardo Mones Sat, 01 Sep 2007 01:54:06 +0200 sylpheed (2.4.4-1) unstable; urgency=low * New upstream release -- Ricardo Mones Sat, 21 Jul 2007 11:05:18 +0200 sylpheed (2.4.3-1) unstable; urgency=low * New upstream release * debian/control - changed s-c-scripts recommend to c-m-tools (s-c will be removed) - changed deprecated Source-Version usage -- Ricardo Mones Sat, 30 Jun 2007 23:47:55 +0200 sylpheed (2.4.2-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 18 May 2007 16:37:59 +0200 sylpheed (2.4.1-1) unstable; urgency=low * New upstream release -- Ricardo Mones Wed, 02 May 2007 15:36:06 +0200 sylpheed (2.4.0-2) unstable; urgency=low * debian/control, debian/rules - Built with oniguruma support (Closes: #420145) -- Ricardo Mones Wed, 02 May 2007 11:11:14 +0200 sylpheed (2.4.0-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 27 Apr 2007 19:40:06 +0200 sylpheed (2.4.0~beta8-1) unstable; urgency=low * New upstream release. -- Ricardo Mones Sun, 15 Apr 2007 11:47:09 +0200 sylpheed (2.4.0~beta5-1) experimental; urgency=low * New upstream development release (Closes: #403714) - 2.3.0 fixed the link with the Jpilot database (Closes: #394384) * debian/rules - define FAQ directory name correctly (Closes: #404963) -- Ricardo Mones Thu, 22 Mar 2007 20:55:54 +0100 sylpheed (2.3.0~beta5-1) unstable; urgency=low * New upstream development release -- Ricardo Mones Fri, 10 Nov 2006 11:49:00 +0100 sylpheed (2.3.0~beta4-1) unstable; urgency=low * New upstream development release -- Ricardo Mones Tue, 31 Oct 2006 07:03:10 +0100 sylpheed (2.3.0~beta3-1) unstable; urgency=low * New upstream development release * debian/get-version.sh - fix pipe to deal with tildes in version numbers -- Ricardo Mones Tue, 17 Oct 2006 23:21:00 +0200 sylpheed (2.3.0~beta2-1) unstable; urgency=low * New upstream development release * debian/get-version.sh - increased tarball version -- Ricardo Mones Tue, 10 Oct 2006 21:32:48 +0200 sylpheed (2.3.0~beta1-1) unstable; urgency=low * New upstream development release * debian/control - removed versioned depends on -i18n and fix the binNMU-ability of the whole package (Closes: #390459) * patches/02*.diff, patches/03*.diff, patches/05*.diff - regenerated patches for being applied cleanly * get-version.sh - temporarily tweak the script because changelog version is not current tarball version -- Ricardo Mones Mon, 2 Oct 2006 00:54:52 +0200 sylpheed (2.2.9-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 22 Sep 2006 10:54:23 +0200 sylpheed (2.2.7-1) unstable; urgency=low * New upstream release - Fixes crash when switching folders (Closes: #375531) -- Ricardo Mones Tue, 1 Aug 2006 06:51:43 +0200 sylpheed (2.2.6-1) unstable; urgency=low * New upstream release * debian/sylpheed.docs.in - Updated document list with some missing ones * debian/sylpheed.1 - Updated command line options in manpage -- Ricardo Mones Sat, 10 Jun 2006 21:06:08 +0200 sylpheed (2.2.5-1) unstable; urgency=low * New upstream release * debian/control - Updated Standards-Version -- Ricardo Mones Thu, 1 Jun 2006 07:36:12 +0200 sylpheed (2.2.4-1) unstable; urgency=low * New upstream release * debian/control - Changed maintainer email address -- Ricardo Mones Thu, 30 Mar 2006 10:52:00 +0200 sylpheed (2.2.3-1) unstable; urgency=low * New upstream release (Closes: #356824) * 04adress_book.diff, 05sensible_editor.diff - Regenerated -- Ricardo Mones Wed, 15 Mar 2006 07:29:13 +0100 sylpheed (2.2.2-1) unstable; urgency=low * New upstream release. -- Ricardo Mones Sat, 11 Mar 2006 13:20:19 +0100 sylpheed (2.2.1-1) unstable; urgency=low * New upstream release. * debian/README.Debian - Removed obsolete note (thanks Hiroyuki Yamamoto for noticing) * debian/control - Removed libgdk-pixbuf-dev from build depends (Closes: #354036) * debian/rules - invoke create-docs with the right shell (Closes: #331209) -- Ricardo Mones Wed, 1 Mar 2006 15:31:41 +0100 sylpheed (2.2.0-1) unstable; urgency=low * New upstream release (Closes: #327855). * debian/control - Added Vietnamese translation to the -i18n description. - Removed unnecesary ${shlibs:Depends} in -i18n. * debian/patches/05sensible_editor.diff - Patch for sensible-editor added. * debian/watch - Updated version and URL, simpler regex. * debian/compat, debian/control - Updated level and version. Wrap long dependence lines. * debian/sylpheed.1 - Fixed unescaped hyphens. * Big thanks to Guillem Jover for reviewing. -- Ricardo Mones Wed, 15 Feb 2006 15:39:07 +0100 sylpheed (2.1.9-1) experimental; urgency=low * New upstream release (development series). -- Ricardo Mones Fri, 16 Dec 2005 14:40:20 +0100 sylpheed (2.0.4-2) unstable; urgency=low * debian/control - Use libreadline5-dev for building this one too. - Fixed circular dependency with i18n package (Closes: #341861) -- Ricardo Mones Fri, 16 Dec 2005 13:56:12 +0100 sylpheed (2.1.7-1) experimental; urgency=low * New upstream release (development series). * debian/control - Use libreadline5-dev for building. * debian/control, debian/rules - Enabled building with GTKSpell (new upstream feature). -- Ricardo Mones Sat, 19 Nov 2005 14:11:44 +0100 sylpheed (2.1.6-1) experimental; urgency=low * New upstream release (development series). * patches/02manual.diff, patches/03free_browsers_and_x_terminal_emulator.diff - Regenerated. -- Ricardo Mones Sun, 13 Nov 2005 21:15:06 +0100 sylpheed (2.0.4-1) unstable; urgency=low * New upstream release. -- Ricardo Mones Sun, 13 Nov 2005 14:39:42 +0100 sylpheed (2.0.2-1) unstable; urgency=low * New upstream release. -- Ricardo Mones Thu, 29 Sep 2005 15:44:50 +0200 sylpheed (2.1.2-1) experimental; urgency=low * New upstream release (development series). * debian/patches/03free_browsers_and_x_terminal_emulator.diff * Regenerated because of new libsylph separation. -- Ricardo Mones Mon, 19 Sep 2005 17:56:21 +0200 sylpheed (2.0.1-1) unstable; urgency=low * New upstream release. * debian/watch - Updated for 2.0 series location. -- Ricardo Mones Thu, 8 Sep 2005 16:47:12 +0200 sylpheed (2.1.1-1) experimental; urgency=low * New upstream release (development series). * debian/patches/00configure.diff - Regenerated. * sylpheed.1 - Fixed invalid character (thanks lintian ;-) * debian/control - Updated stardards version. -- Ricardo Mones Tue, 23 Aug 2005 13:22:14 +0200 sylpheed (2.0.0-1) unstable; urgency=low * New upstream release. First for unstable. * debian/patches/01verticalbar_automatic.diff - Removed per upstream request (hides config option). * debian/control - Added new lt translation to long description of -i18n package. -- Ricardo Mones Fri, 29 Jul 2005 12:18:36 +0200 sylpheed (1.9.12-1) experimental; urgency=low * New upstream release. * debian/patches/00configure.diff - Regenerated patch. -- Ricardo Mones Fri, 3 Jun 2005 08:20:36 +0200 sylpheed (1.9.9-1) experimental; urgency=low * New upstream release. * debian/patches/01verticalbar_automatic.diff - Regenerated patch. -- Ricardo Mones Sun, 24 Apr 2005 18:18:34 +0000 sylpheed (1.9.6-1) experimental; urgency=low * New upstream release. -- Ricardo Mones Tue, 15 Mar 2005 15:51:04 +0100 sylpheed (1.9.5-1) experimental; urgency=low * New upstream release. * debian/control - Switched from libgpgme-dev to libgpgme11-dev. -- Ricardo Mones Thu, 10 Mar 2005 10:50:46 +0000 sylpheed (1.9.2-1) experimental; urgency=low * New upstream release. * debian/control - Removed imlib from Build-Depends as is no longer used. -- Ricardo Mones Thu, 10 Feb 2005 17:50:30 +0100 sylpheed (1.9.1-1) experimental; urgency=low * First packaging for experimental of the GTK2 version. * debian/rules - Remove previous fix. * debian/control - Set Build-Depends for GTK+2 * debian/patches/*.diff - Regenerated all for this version. * debian/watch - Upstream now in v1.9 directory on server. -- Ricardo Mones Wed, 9 Feb 2005 11:34:32 +0000 sylpheed (1.0.0release-1) unstable; urgency=low * New upstream release * debian/patches/00configure.diff - Cleaned up. * debian/rules - Temporary fix for VERSION variable. -- Ricardo Mones Mon, 3 Jan 2005 10:22:39 +0000 sylpheed (1.0.0rc-1) unstable; urgency=low * New upstream release - (Closes: #284180) -- Ricardo Mones Wed, 22 Dec 2004 17:50:11 +0100 sylpheed (1.0.0beta4-1) unstable; urgency=low * New upstream release * patches/03free_browsers_and_x_terminal_emulator.diff - Regenerated again. -- Ricardo Mones Wed, 8 Dec 2004 23:01:41 +0100 sylpheed (1.0.0beta3-1) unstable; urgency=low * New upstream release * patches/03free_browsers_and_x_terminal_emulator.diff - Regenerated properly. -- Ricardo Mones Wed, 17 Nov 2004 15:53:46 +0100 sylpheed (1.0.0beta2-1) unstable; urgency=low * New upstream release -- Ricardo Mones Mon, 8 Nov 2004 16:35:18 +0100 sylpheed (1.0.0beta1-1) unstable; urgency=low * New upstream release -- Ricardo Mones Fri, 29 Oct 2004 13:39:10 +0200 sylpheed (0.9.99-1) unstable; urgency=low * New upstream release - (Closes: #248160, #260432, #192140) * debian/watch - Added -- Ricardo Mones Wed, 13 Oct 2004 22:53:19 +0200 sylpheed (0.9.12-3) unstable; urgency=low * debian/control - Fixed sylpheed-i18n description (Closes: #266759) * debian/create-docs.sh - Require proper shell (fixes FTBFS if /bin/sh is a POSIX shell) -- Ricardo Mones Thu, 19 Aug 2004 18:08:20 +0200 sylpheed (0.9.12-2) unstable; urgency=low * debian/control * debian/rules - Locale split (new sylpheed-i18n package). -- Ricardo Mones Mon, 9 Aug 2004 15:58:21 +0200 sylpheed (0.9.12-1) unstable; urgency=low * New upstream release - Print menu option restored (Closes: #254719) * debian/control - Recomends metamail -- Ricardo Mones Thu, 17 Jun 2004 18:54:10 +0200 sylpheed (0.9.11-1) unstable; urgency=low * New upstream release - CRAM-MD5 for SMTP already supported (Closes: #162254) * debian/menu - removed forgotten "vanilla" reference (Closes: #246759) -- Ricardo Mones Sat, 29 May 2004 20:44:39 +0200 sylpheed (0.9.10-1) unstable; urgency=low * New upstream release * debian/control: - standards version: 3.6.1 - recommends: sylpheed-claws-scripts - new maintainer, added uploaders: Paul and Gustavo * debian/menu: - fixed quoting * debian/rules - removed add-ons dependencies - removed "vanilla" references * debian/patches/00* - removed "vanilla" references * debian/add-ons/: - removed (scripts are a separate package now) * debian/sylpheed.post*: - disabled update-alternatives stuff * debian/README.Debian: - rewritten tools info - added rationale for disabling alternatives stuff -- Ricardo Mones Wed, 21 Apr 2004 13:56:07 +0200 sylpheed (0.9.7-2) unstable; urgency=low * debian/rules: - calls the script using /bin/sh directly, to solve the FTBFS problems -- Gustavo Noronha Silva Tue, 11 Nov 2003 23:44:01 -0200 sylpheed (0.9.7-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Tue, 11 Nov 2003 22:22:12 -0200 sylpheed (0.9.6-1) unstable; urgency=low * New upstream release - will probably work alright with fonts on startup (Closes: #211368) -- Gustavo Noronha Silva Mon, 22 Sep 2003 01:37:09 -0300 sylpheed (0.9.5-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Wed, 10 Sep 2003 04:11:51 -0300 sylpheed (0.9.4-2) unstable; urgency=low * debian/rules: - fix the way 'uudecode' is called to avoid breaking the build -- Gustavo Noronha Silva Sat, 9 Aug 2003 14:44:32 -0300 sylpheed (0.9.4-1) unstable; urgency=low * New upstream release * debian/sylpheed.prerm -> debian/sylpheed.postrm: - renamed to make update-alternatives stuff work - only remove alternative when removing or purging on postrm (Closes: #201983) * debian/add-ons/tools.tar.uu: - updated from sylpheed-claws 0.9.4claws -- Gustavo Noronha Silva Wed, 6 Aug 2003 05:21:56 -0300 sylpheed (0.9.3-1) unstable; urgency=low * New upstream release * debian/sylpheed-debian.xpm: - switched to sylpheed's new icon, without the 24 color limitation in place -- Gustavo Noronha Silva Sun, 13 Jul 2003 01:48:27 -0300 sylpheed (0.9.2-2) unstable; urgency=low * The "Hey, pay more attention, please!" release * debian/rules: - added missing --enable stuff on DEB_CONFIGURE_EXTRA_FLAGS (Closes: #198679, #198591) -- Gustavo Noronha Silva Tue, 24 Jun 2003 23:02:26 -0300 sylpheed (0.9.2-1) unstable; urgency=low * New upstream release * debian/control: - added | flex-old build-dep - Build-Depends on sharutils, to use uudecode on rules -- Gustavo Noronha Silva Sat, 21 Jun 2003 02:21:45 -0300 sylpheed (0.9.0-3) unstable; urgency=low * debian/rules: - adopting Common Debian Build System * debian/control: - Build-Depends on cdbs, not on devhelp -- Gustavo Noronha Silva Mon, 26 May 2003 12:07:54 -0300 sylpheed (0.9.0-2) unstable; urgency=low * debian/control: - some |'s on the Build-Deps to make backporting easier -- Gustavo Noronha Silva Mon, 19 May 2003 00:21:49 -0300 sylpheed (0.9.0-1) unstable; urgency=low * New upstream release - it seems like the loooong CC is not a problem anymore (Closes: #182003) - IMAP has gone through a lot of work, so I believe this should be fixed. Also, this version is supposed to fix the 'io blocking' thingy. (Closes: #164101) - I cannot reproduce mark-losing on this version, please reopen if you still have problems. (Closes: #167793) - IMAP folders with & work with no problems (Closes: #167081) the ones ending on / depend on server implementation, so not a bug on Sylpheed (Closes: #173995) - does not segfault with fr_FR@euro (Closes: #174224) * debian/control: - changed Depends to libpng12-dev and removed libsasl-dev, it should be grabed by libldap2-dev * debian/rules: - removed the ancient --enable-jconv -- Gustavo Noronha Silva Sat, 17 May 2003 15:31:17 -0300 sylpheed (0.8.11-2) unstable; urgency=low * patches/03free_browsers_and_x_terminal_emulator: - modified to have sensible-browser as default command (Closes: #187329) * debian/control: - Standards-Version 3.5.9 -- Gustavo Noronha Silva Tue, 8 Apr 2003 04:50:38 -0300 sylpheed (0.8.11-1) unstable; urgency=low * New upstream release * patches/05manuals_po_fr: - removed, we should not even patch potfiles (duh) -- Gustavo Noronha Silva Tue, 25 Mar 2003 22:20:04 -0300 sylpheed (0.8.10-1) unstable; urgency=low * New upstream version -- Gustavo Noronha Silva Sat, 8 Feb 2003 20:47:57 -0200 sylpheed (0.8.9-2) unstable; urgency=low * debian/control: - removed libjconv-dev from B-Deps, thanks to Nicolas Boos for reminding me. * patches/05manuals_po_fr: - added to fix problems with translations reported by Nicolas, too. -- Gustavo Noronha Silva Thu, 23 Jan 2003 14:37:27 -0200 sylpheed (0.8.9-1) unstable; urgency=low * New upstream release * tools/*: - updated from sylpheed-claws 0.8.8claws111 * Help is being handled correctly for some time now (Closes: #177197) * Reply to list is already there for some time, too (Closes: #144735) * debian/control: - Build-Depends on libreadline4-dev -- Gustavo Noronha Silva Sat, 18 Jan 2003 01:20:39 -0200 sylpheed (0.8.8-2) unstable; urgency=low * debian/control: - Build-Depends on libgpgme-dev (>= 0.3.10) -- Gustavo Noronha Silva Mon, 30 Dec 2002 22:03:07 -0200 sylpheed (0.8.8-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Sun, 29 Dec 2002 23:26:38 -0200 sylpheed (0.8.7-1) unstable; urgency=low * New upstream release * patches/03free_browsers_and_x_terminal_emulator: - modified a bit, the authors added lots of changes like mine -- Gustavo Noronha Silva Sat, 21 Dec 2002 23:40:06 -0200 sylpheed (0.8.6-2) unstable; urgency=low * debian/control: - accepted patch from Nicolas Boos to help him backporting... this removes xlib6g-dev's Build-Deps (Closes: #170149) - reworded the long description a bit - upgraded to Standards-Version 3.5.8 * debian/rules: - supports nostrip DEB_BUILD_OPTIONS * tools/*: - updated directory, from sylpheed-claws 0.8.2claws82 * debian/sylpheed-debian.xpm: - resized and reduced the number of colors -- Gustavo Noronha Silva Tue, 10 Dec 2002 01:45:35 -0200 sylpheed (0.8.6-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Fri, 22 Nov 2002 00:32:28 -0200 sylpheed (0.8.5-2) unstable; urgency=low * debian/control: - added Depends on metamail (Closes: #168156) -- Gustavo Noronha Silva Tue, 12 Nov 2002 01:45:37 -0200 sylpheed (0.8.5-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Fri, 11 Oct 2002 23:12:49 -0300 sylpheed (0.8.3-1) unstable; urgency=low * New upstream release * debian/control: - Conflicts on incompatible version of sylpheed-doc package. This, plus the changes to sylpheed-doc's control and sylpheed-claws' control files to have sane conflicts do (Closes: #160684) -- Gustavo Noronha Silva Wed, 18 Sep 2002 01:14:22 -0300 sylpheed (0.8.2-2) unstable; urgency=low * debian/sylpheed.prerm: - remove alternative symlink when prerm is called with 'remove', too (Closes: #159707) -- Gustavo Noronha Silva Thu, 5 Sep 2002 11:12:44 -0300 sylpheed (0.8.2-1) unstable; urgency=low * New upstream release * debian/control: - Build-Depends on libpng2-dev (Closes: #158403) * tools: - updated from sylpheed-claws 0.8.1claws120 * debian/rules: - installs all pngs (Closes: #156504) * patches/00configure: - changed patch to sylpheed.desktop, to use the png icon * debian/sylpheed.xpm: - removed -- Gustavo Noronha Silva Wed, 28 Aug 2002 11:12:19 -0300 sylpheed (0.8.1-2) unstable; urgency=low * Rebuild for libpisock8 -- Gustavo Noronha Silva Fri, 16 Aug 2002 12:09:51 -0300 sylpheed (0.8.1-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Fri, 26 Jul 2002 03:16:44 -0300 sylpheed (0.8.0-3) unstable; urgency=low * debian/postinst,prerm: - remove them, I forgot the /usr/doc transition would be finished in sarge -- Gustavo Noronha Silva Wed, 24 Jul 2002 04:48:52 -0300 sylpheed (0.8.0-2) unstable; urgency=low * debian/copyright: - changed to match current status, as requested by upstream. * debian/sylpheed.{postinst,prerm} - link/remove manually (what happened to debhelper?) -- Gustavo Noronha Silva Wed, 24 Jul 2002 03:05:30 -0300 sylpheed (0.8.0-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Mon, 15 Jul 2002 12:16:42 -0300 sylpheed (0.7.8-3) unstable; urgency=low * rebuild with new libpisock (5) (Closes: #151752) -- Gustavo Noronha Silva Mon, 8 Jul 2002 22:00:55 -0300 sylpheed (0.7.8-2) unstable; urgency=low * patches/04address_book: - fixes a little bug in address book... now it lets you write a name, press tab to complete it and click the 'to:' and 'cc:' buttons without selecting the name in the list with the mouse (sent upstream) -- Gustavo Noronha Silva Thu, 20 Jun 2002 14:19:26 -0300 sylpheed (0.7.8-1) unstable; urgency=low * New upstream version -- Gustavo Noronha Silva Sat, 15 Jun 2002 19:07:46 -0300 sylpheed (0.7.7-1) unstable; urgency=low * New upstream release * debian/sylpheed.1: - accepted patch from Guido Guenther , thanks! (Closes: #149109) * tools/: - updated from sylpheed-claws-0.7.6claws34 (cvs) * patches/02manual - removed the defs changes because I fixed sylpheed-doc * debian/control: - added versioned suggests to sylpheed-doc because of the above entry -- Gustavo Noronha Silva Sun, 9 Jun 2002 21:26:32 -0300 sylpheed (0.7.6-3) unstable; urgency=low * patches/03free_browsers_and_x_terminal_emulator: - fixes galeon -new-{window,tab} to --new-{window,tab} -- Gustavo Noronha Silva Sat, 25 May 2002 04:25:53 -0300 sylpheed (0.7.6-2) unstable; urgency=low * pos/pt_BR.po: - updated pt_BR translation * patches/03free_browsers_and_x_terminal_emulator: - changes all ocurrences of 'netscape' to 'mozilla' and all 'kterm's to 'x-terminal-emulator', also removes opera and adds galeon to the default list of browsers -- Gustavo Noronha Silva Mon, 13 May 2002 22:03:16 -0300 sylpheed (0.7.6-1) unstable; urgency=low * New upstream version * debian/control: - no more sylpheed-doc, it is moving to its own source package - removed Build-Depends on shareutils * scripts/install-docs.sh: - removed * debian/*doc-base*: - removed * COPYING.new: - no longer needed * debian/rules: - removed building of sylpheed-doc * patches/02manual: - fixed to include new manuals and to fix manual and faq paths -- Gustavo Noronha Silva Mon, 13 May 2002 02:37:06 -0300 sylpheed (0.7.5-1) unstable; urgency=low * New upstream version -- Gustavo Noronha Silva Tue, 7 May 2002 21:39:02 +0000 sylpheed (0.7.4-4) unstable; urgency=high * moved into main * debian/control: - changed Section to 'mail' - added Recommends on aspell-dictionary * debian/copyright: - documents the license changes made by the author to let sylpheed link with libssl (let's sylpheed go in main) * debian/COPYING.new: - new copyright file for sylpheed, sent by the author to the lists in the announcement mail * urgency set to high as this is only licensing changes, fundamentaly, and it is good that this package be in main when woody is released (there're no RC bugs found after almost a month of testing) -- Gustavo Noronha Silva Thu, 11 Apr 2002 22:49:07 -0300 sylpheed (0.7.4-3) unstable; urgency=low * debian/control: - adds Build-Depends on sharutils, we're using uudecode -- Gustavo Noronha Silva Mon, 18 Mar 2002 14:11:13 -0300 sylpheed (0.7.4-2) unstable; urgency=low * The "Documentation for All" release * patches/02manual: - modified sylpheed a lot to have new entries for the new languages added to the sylpheed-doc package both the manual and the FAQ, also to display a note 'apt-get install sylpheed-doc' in case one of the docs is not found * scripts/install-docs.sh: - does the hard work of extracting and modifying the names of the directories of the manuals and FAQs * debian/copyright: - tells where did we get docs from * upstream/manual*tar.gz, upstream/faq*tar.gz: - added updated and translated manuals and faqs from the SylpheedDoc Project, the 'ja' manual and it faq tarballs were produced from the htmls found on sylpheed-claws. The ja htmls were regenerated to have the right names (user_guide.html) * debian/sylpheed-doc.doc-base-sylpheed-*: - updated en, ja, created fr and es * debian/sylpheed-doc.doc-base-sylpheed-faq-*: - created en, fr, es, it -- Gustavo Noronha Silva Mon, 18 Mar 2002 01:13:10 -0300 sylpheed (0.7.4-1) unstable; urgency=low * New upstream version * This version brings the latest updated potfile for pt_BR (Closes: #135436) -- Gustavo Noronha Silva Sun, 10 Mar 2002 23:21:44 -0300 sylpheed (0.7.3-1) unstable; urgency=low * New upstream version -- Gustavo Noronha Silva Thu, 7 Mar 2002 17:48:18 -0300 sylpheed (0.7.2-3) unstable; urgency=low * patches/03draft_attachment: - got from cvs: fixes problems with attachments on draft folder (reediting) (Closes: #107553) * cvs: 2002-02-20 -- Gustavo Noronha Silva Wed, 20 Feb 2002 18:13:40 -0300 sylpheed (0.7.2-2) unstable; urgency=low * Recompile with libgpgme6 * debian/rules: - added code to update pos from cvs testing -d pos/ * pos/*: - potfiles updated from cvs -- Gustavo Noronha Silva Sun, 17 Feb 2002 18:13:30 -0300 sylpheed (0.7.2-1) unstable; urgency=low * New upstream release * patches/{04imap_path_separator,05null_when_selection_is_0,06utils_return_if_0} - droped, these fixes are on the newest release -- Gustavo Noronha Silva Sun, 17 Feb 2002 01:32:40 -0300 sylpheed (0.7.1-3) unstable; urgency=low * fixes from cvs: - patches/04imap_path_separator - patches/05null_when_selection_is_0 - patches/06utils_return_if_0 * cvs: 2002-02-13 -- Gustavo Noronha Silva Wed, 13 Feb 2002 18:14:17 -0200 sylpheed (0.7.1-2) unstable; urgency=low * patches/03decryption_fix: - fixes a problem when decrypting a message, from cvs * cvs: 2002-02-12 -- Gustavo Noronha Silva Tue, 12 Feb 2002 16:31:33 -0200 sylpheed (0.7.1-1) unstable; urgency=low * New upstream release * new build system which enables me to apply several different small patches to the upstream source code * patches/00potfiles: - updated es and pt_BR potfiles -- Gustavo Noronha Silva Mon, 11 Feb 2002 20:50:44 -0200 sylpheed (0.7.0-8) unstable; urgency=low * The "Path of Now and Forever" release First version in which you are able to install sylpheed and claws (0.7.0claws52-2 at least) together * configure.in: - changed PACKAGE to sylpheed-vanilla, first move on making sylpheed and sylpheed-claws instalable together - changed manualdir to /usr/share/doc/sylpheed-doc (this was done on configure before) * sylpheed.desktop: - modified xpm to sylpheed-vanilla.xpm - modified exec to sylpheed-vanilla * debian/rules: - installs sylpheed, sylpheed.1, sylpheed.desktop and sylpheed.xpm as sylpheed-vanilla, etc * debian/menu: - installed to point to the new sylpheed-vanilla executable * debian/postinst,postrm: - creates the 'sylpheed' alternative -- Gustavo Noronha Silva Wed, 6 Feb 2002 23:04:50 -0200 sylpheed (0.7.0-7) unstable; urgency=low * src/compose.c: - removed default X-Face, it doesn't seem to make everyone happy... I'll readd it if I find a better solution, but it is gone by now. * debian/README.Debian: - modified to reflect above entry * po/*: - updated from cvs * cvs: 2002-02-06 -- Gustavo Noronha Silva Wed, 6 Feb 2002 21:04:07 -0200 sylpheed (0.7.0-6) unstable; urgency=low * debian/rules: - call dpkg-architecture to set DEB_BUILD_ARCH and DEB_BUILD_GNU_SYSTEM so that fakeroot debian/rules binary works * debian/control: - Build-Depends on debhelper >> 2.0.0, helps backports -- Gustavo Noronha Silva Fri, 1 Feb 2002 15:11:13 -0200 sylpheed (0.7.0-5) unstable; urgency=low * src/compose.c: - added default X-Face (Debian swirl) thanks to Chris Hessmann for the X-Face and to David B Harris for the idea * src/folderview.c: - modified policy of vertical scrollbar to AUTOMATIC * tools/*: - added tools/ directory from sylpheed-claws, some of those tools may be useful for sylpheed users * debian/README.Debian: - speaks about those changes above * src/about.c: - updated from cvs (spelling fixes only) * src/foldersel.c: - updated from cvs (translatable strings, special folders to top) * src/procmsg.c: - updated from cvs (fixes a bug with sizeof which could cause crashes on Alpha) * src/compose.c: - modified some parts from cvs (fixes crash on wrapping long URL) - Ctrl-enter works for sending message * src/textview.c: - modified some parts from cvs (fixes segfault on font loading) * src/importldif.c: - updated from cvs (fixes segfault when closing dialog with window manager) * debian/control: - removed Build-Depends on libpspell-dev (not needed on sylpheed, only on claws) -- Gustavo Noronha Silva Thu, 31 Jan 2002 23:43:28 -0200 sylpheed (0.7.0-4) unstable; urgency=low * the "That's what you get for working on your packages when you're not in home" release * recompilation with libgpgme5 (Closes: #129614) -- Gustavo Noronha Silva Thu, 17 Jan 2002 11:03:57 -0200 sylpheed (0.7.0-3) unstable; urgency=low * debian/control: - added "or" Recommends on xfonts-* to avoid segfaults on startup (Closes: #129342) - I won't depend as lintian told me that policy forbids this * po/es.po: - updated translation, thanks to Ricardo Mones Lastra -- Gustavo Noronha Silva Wed, 16 Jan 2002 09:18:11 -0200 sylpheed (0.7.0-2) unstable; urgency=low * po/fr.po updated, thanks to Melvin Hadasht * po/pt_BR.po: updated and sent upstream -- Gustavo Noronha Silva Mon, 7 Jan 2002 14:59:56 -0200 sylpheed (0.7.0-1) unstable; urgency=low * New upstream release * src/ldif.c: - withdrew my modifications for upstream had a better fix -- Gustavo Noronha Silva Mon, 7 Jan 2002 13:03:18 -0200 sylpheed (0.6.6-5) unstable; urgency=low * rebuilt with the new libgpgme5 -- Gustavo Noronha Silva Tue, 1 Jan 2002 05:25:46 -0200 sylpheed (0.6.6-4) unstable; urgency=low * src/ldif.c@128: changed gchar to signed char to workaround assumption on some archs that a char is unsigned (Closes: #127010) -- Gustavo Noronha Silva Sun, 30 Dec 2001 19:58:17 -0200 sylpheed (0.6.6-3) unstable; urgency=low * debian/control: remove build-dependency on libltdl3-dev (Closes: #125677) -- Gustavo Noronha Silva Wed, 19 Dec 2001 00:17:58 -0200 sylpheed (0.6.6-2) unstable; urgency=low * debian/control: fixed small spelling mistakes (Closes: #125408) -- Gustavo Noronha Silva Tue, 18 Dec 2001 02:06:07 -0200 sylpheed (0.6.6-1) unstable; urgency=low * New upstream release -- Gustavo Noronha Silva Sat, 15 Dec 2001 14:48:23 -0200 sylpheed (0.6.5-2) unstable; urgency=low * configure: changed instalation of the manual from /usr/share/sylpheed to /usr/share/doc/sylpheed-doc, a new package. This change and some modifications done to the doc-base files make the entries appear on dhelp/dwww, etc. (Closes: #119680). * debian/control: added the sylpheed-doc package * debian/rules: filled the binary-indep rule and some cleanup * debian/control: fixed a little typo (thanks to Yoshito Komatsu ) * sylpheed.desktop: applied patch from Yoshito Komatsu that (Closes: #112214) * debian/control: make sylpheed-doc conflict with previous versions of sylpheed and version 0.6.5claws1-2 and smaller of sylpheed-claws as they had documentation. -- Gustavo Noronha Silva Sat, 17 Nov 2001 19:35:23 -0200 sylpheed (0.6.5-1) unstable; urgency=low * New upstream release * Updated pt_BR.po, sent upstream. -- Gustavo Noronha Silva Wed, 7 Nov 2001 18:36:51 -0200 sylpheed (0.6.4-2) unstable; urgency=low * debian/rules: changed DH_COMPAT to 3, changed build dir from debian/tmp to debian/sylpheed * debian/rules: fixed some problems on the configure target, it was not touching configure-stamp, making ./configure run twice causing config.h to be regenerated and the whole program to be recompiled with a wrong LOCALEDIR definition (Closes: #116918) (Closes: #117035) * Added Suggests: on jpilot -- Gustavo Noronha Silva Thu, 1 Nov 2001 23:48:30 -0200 sylpheed (0.6.4-1) unstable; urgency=low * New upstream release * debian/rules: Added configure target * debian/rules: enables ssl, ldap, jpilot * debian/control: added build-deps to acheive the needs of the above * debian/control: added versioned build-deps on gpgme (Closes: #115532) -- Gustavo Noronha Silva Sun, 21 Oct 2001 20:55:20 -0200 sylpheed (0.6.3-1) unstable; urgency=low * Adopting package, set Maintainer field to me (Closes: #114639) * Added debian/sylpheed-debian.xpm, conforming to Debian standards for inclusion on the Debian menu system. * Edited debian/menu to add hints, change the name of the entry sylpheed->Sylpheed and add the icon mentioned above. * Added the manuals in english and japanese to doc-base. Maybe I should do a sylpheed-doc package? I'll think about that. * Removed INSTALL and INSTALL.jp from debian/docs. * Changed the way debian revision is handled in package version. -- Gustavo Noronha Silva Wed, 10 Oct 2001 19:27:54 -0300 sylpheed (0.6.3-0.1) unstable; urgency=low * New upstream release * last Takuo KITAME package. * change Maintainer to Debian QA Team -- Takuo KITAME Tue, 9 Oct 2001 12:10:51 +0900 sylpheed (0.6.2-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 17 Sep 2001 06:49:42 +0900 sylpheed (0.6.1-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 3 Sep 2001 02:24:16 +0900 sylpheed (0.6.0-1) unstable; urgency=low * New upstream release -- Takuo KITAME Thu, 30 Aug 2001 19:46:27 +0900 sylpheed (0.5.3-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 20 Aug 2001 02:54:04 +0900 sylpheed (0.5.0-1) unstable; urgency=low * New upstream release * applied patch of Bug#102470 (closes: Bug#102470) -- Takuo KITAME Fri, 6 Jul 2001 17:15:32 +0900 sylpheed (0.4.99-1) unstable; urgency=low * New upstream release -- Takuo KITAME Sun, 17 Jun 2001 13:18:52 +0900 sylpheed (0.4.66-2) unstable; urgency=low * --enable-jconv (closes: Bug#94183) * --enable-gpgme and move to non-US (closes: Bug#96686) -- Takuo KITAME Wed, 9 May 2001 23:06:09 +0900 sylpheed (0.4.66-1) unstable; urgency=low * New upstream release -- Takuo KITAME Wed, 9 May 2001 02:09:55 +0900 sylpheed (0.4.65-1) unstable; urgency=low * New upstream release -- Takuo KITAME Wed, 2 May 2001 17:01:21 +0900 sylpheed (0.4.64-1) unstable; urgency=low * New upstream release -- Takuo KITAME Wed, 18 Apr 2001 12:34:43 +0900 sylpheed (0.4.63-1) unstable; urgency=low * New upstream release -- Takuo KITAME Wed, 11 Apr 2001 20:00:12 +0900 sylpheed (0.4.62-1) unstable; urgency=low * New upstream release -- Takuo KITAME Tue, 13 Mar 2001 00:56:58 +0900 sylpheed (0.4.61-1) unstable; urgency=low * New upstream release -- Takuo KITAME Sat, 3 Feb 2001 04:02:48 +0900 sylpheed (0.4.60-1) unstable; urgency=low * New upstream release -- Takuo KITAME Tue, 30 Jan 2001 12:46:46 +0900 sylpheed (0.4.52-1) unstable; urgency=low * New upstream release -- Takuo KITAME Tue, 16 Jan 2001 18:08:24 +0900 sylpheed (0.4.51-1) unstable; urgency=low * New upstream release -- Takuo KITAME Wed, 3 Jan 2001 17:29:26 +0900 sylpheed (0.4.9-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 18 Dec 2000 10:54:04 +0900 sylpheed (0.4.8-1) unstable; urgency=low * New upstream release -- Takuo KITAME Fri, 8 Dec 2000 00:36:30 +0900 sylpheed (0.4.7-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 4 Dec 2000 01:43:18 +0900 sylpheed (0.4.6-1) unstable; urgency=low * New upstream release -- Takuo KITAME Tue, 28 Nov 2000 01:00:55 +0900 sylpheed (0.4.5-1) unstable; urgency=low * New upstream release -- Takuo KITAME Thu, 23 Nov 2000 07:34:37 +0900 sylpheed (0.4.4-2) unstable; urgency=low * Added desktop entry -- Takuo KITAME Thu, 16 Nov 2000 13:59:18 +0900 sylpheed (0.4.4-1) unstable; urgency=low * New upstream release -- Takuo KITAME Tue, 7 Nov 2000 19:13:14 +0900 sylpheed (0.4.3-1) unstable; urgency=low * New upstream release -- Takuo KITAME Thu, 2 Nov 2000 01:34:37 +0900 sylpheed (0.4.2-1) unstable; urgency=low * New upstream release -- Takuo KITAME Mon, 16 Oct 2000 06:46:38 +0900 sylpheed (0.4.1-1) unstable; urgency=low * Initial Release. -- Takuo KITAME Sat, 30 Sep 2000 16:31:27 +0900 debian/sylpheed-i18n.docs0000644000000000000000000000002412253443714012433 0ustar AUTHORS NEWS README debian/sylpheed.links0000644000000000000000000000040412022472025012037 0ustar /usr/share/pixmaps/sylpheed.png /usr/share/icons/hicolor/48x48/apps/sylpheed.png /usr/share/pixmaps/sylpheed-128x128.png /usr/share/icons/hicolor/128x128/apps/sylpheed.png /usr/share/pixmaps/sylpheed-64x64.png /usr/share/icons/hicolor/64x64/apps/sylpheed.png debian/source/0000755000000000000000000000000012253443714010473 5ustar debian/source/format0000644000000000000000000000001412253443714011701 0ustar 3.0 (quilt) debian/sylpheed.docs0000644000000000000000000000014012253443714011655 0ustar AUTHORS NEWS NEWS-1.0 NEWS-2.0 PLUGIN.ja.txt PLUGIN.txt README README.es README.ja TODO TODO.ja debian/README.Debian0000644000000000000000000000511512253443714011236 0ustar Sylpheed for Debian ------------------- 1. Helpers and tools -------------------- There are some useful tools for users of this package. These tools were from the sylpheed-claws package, later renamed to claws-mail and are now available in the claws-mail-tools package, but not installed by default. Once installed, they can be found on /usr/share/doc/claws-mail/tools, please read the README file found in this directory for information on how to use the tools and what they are for. To create a X-Face you have to use the gif2xface script. You need to install compface and netpbm for the script to work. Read /usr/share/doc/claws-mail/tools/README to learn how to use it. A cortesy from Chris Hessmann , a Debian-swirl X-Face: X-Face: yuSM.z0$PasG_!+)P;ugu5P+@#JEocHIpArGcQZ^hcGos8:DBJ-tfTQYWyf`$2r0vfaoo7F|h.;Agl'@x8v]?{#ZLQDqSB:L^6RXGfF_fD+G9$c:)p, Sat, 14 Apr 2012 18:49:07 +0200 debian/sylpheed.install0000644000000000000000000000017512253443714012403 0ustar usr/bin usr/lib/*/lib* usr/share/applications sylpheed*.png usr/share/pixmaps/ debian/sylpheed-debian.xpm usr/share/pixmaps/ debian/sylpheed.manpages0000644000000000000000000000002212253443714012517 0ustar debian/sylpheed.1 debian/sylpheed-dbg.docs0000644000000000000000000000002412253443714012410 0ustar AUTHORS NEWS README debian/sylpheed.lintian-overrides0000644000000000000000000000014312253443714014366 0ustar sylpheed binary: non-dev-pkg-with-shlib-symlink sylpheed binary: package-name-doesnt-match-sonames debian/sylpheed.pod0000644000000000000000000000536212253443714011522 0ustar =pod =encoding utf8 =head1 NAME sylpheed - Light weight e-mail client using GTK+ =head1 SYNOPSIS B [OPTIONS ...] [URL] =head1 DESCRIPTION B is a simple, lightweight but featureful, and easy-to-use e-mail client using the GTK+ graphic user interface toolkit. B provides an intuitive user-interface and is also designed for keyboard-oriented operation, so B can be widely used from beginners to power users. Among others, B has the following features: * Simple, beautiful, and well-polished user interface * Comfortable operation, which is built in detail * Well-organized and easy to understand configuration * Lightweight on resources operation * High reliability with one-mail-to-one-file format (MH) * Extensible through a plug-in system * Powerful filtering and searching capabilities * Junk mail control * Security features (GnuPG, SSL/TLSv1) * Support for various protocols * Internationalization and multilingualization support * High-level Japanese processing * Flexible cooperation with external commands =head1 OPTIONS =over 2 =item B<--compose> [Emailto URLE] Opens composition window, with some fields preset from the given URL, if specified. =item B<--attach> EfileE [Efile2E ...] Opens composition window with specified files attached. =item B<--receive> Receives new messages. =item B<--receive-all> Receives new messages for all accounts. =item B<--send> Sends all queued messages. =item B<--status> [EfolderE ...] Shows the total number of messages. =item B<--status-full> [EfolderE ...] Shows the status of each given folder. =item B<--open> EfolderidEEEmsgnumE Opens the existing message in a new window. =item B<--open> Efile URLE Opens an RFC822 message file in a new window. =item B<--configdir> EdirnameE Use given directory as configuration directory. =item B<--exit> Makes a running Sylpheed to exit, then exits. =item B<--debug> Enables debug mode. This produces highly verbose console output. =item B<--safe-mode> Enables safe mode. Plugins won't be loaded in this mode. =item B<--help> Displays a brief help screen and exits. =item B<--version> Displays version information and exits. =back =head1 SEE ALSO F, F, L, L, =head1 AUTHOR B is written by Hiroyuki Yamamoto Ehiro-y@kcn.ne.jpE. This manual page was originally written by Takuo KITAME Ekitame@northeye.orgE and Guido Guenther Eagx@debian.orgE for the Debian GNU/Linux system (but may be used by others). Rewritten into pod format and updated by Ricardo Mones Emones@debian.orgE. =cut debian/watch0000644000000000000000000000025212253443714010223 0ustar # Site Directory Pattern Version Script version=3 opts="uversionmangle=s/rc\./rc0./" \ http://sylpheed.sraoss.jp/sylpheed/v(.+)/sylpheed-(.+)\.tar\.gz debian uupdate