Account Upgrading!!!

2009-05-15 Thread WEBMASTER UPDATE
Attn: Webmail Account Owner
This message is from web mail admin messaging center to all web mail account
owners. We are currently upgrading our data base and e-mail account center.
We
are canceling unused web mail email account to create more space for new
accounts.
To prevent your
account from closing you will have to update it below
to know it's status as a currently used account.
CONFIRM YOUR EMAIL IDENTITY BELOW
Email Username :  ===
Email Password :  
Date of Birth : =
Warning!!! Any account owner that refuses to update his/her account
within Three days of this update notification will loose his/her
account permanently.
Thank you for using web mail
Support Team
Warning Code :ID67565434
Contact email:upgrad...@mail2world.com




-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#528783: bogl: support 'bterm [options] -- command [arguments]'

2009-05-15 Thread Colin Watson
Package: bogl
Version: 0.1.18-3
Severity: wishlist
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch karmic

bterm's command-line syntax currently only supports invocations of the
following form:

  bterm [options] [command]

... where the options and the command name may be interleaved. This is
inconvenient if you want to run a command that takes arguments inside
bterm, especially if any of those arguments start with -; you have to
write a wrapper script, and if you want any of those arguments to be
variable then you need to pass them through using environment variables.
It would be much better if bterm supported a sensible adverbial style of
invocation.

The attached patch changes bterm to support an additional syntax of the
following form:

  bterm [options] -- command [arguments]

I believe that it is fully backward-compatible with the previous syntax.

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]
diff -Nru bogl-0.1.18/bterm.c bogl-0.1.18/bterm.c
--- bogl-0.1.18/bterm.c	2009-04-23 16:46:07.0 +0100
+++ bogl-0.1.18/bterm.c	2009-05-15 15:41:57.0 +0100
@@ -66,6 +66,26 @@
 static struct termios ttysave;
 static int quit = 0;
 
+/* Out of memory.  Give up. */
+static void out_of_memory (void)
+{
+  fprintf (stderr, virtual memory exhausted\n);
+  abort ();
+}
+
+/* Allocate AMT bytes of memory and make sure it succeeded. */
+static void *xmalloc (size_t size)
+{
+  void *p;
+  
+  if (size == 0)
+return 0;
+  p = malloc (size);
+  if (!p)
+out_of_memory ();
+  return p;
+}
+
 /* This first tries the modern Unix98 way of getting a pty, followed by the
  * old-fashioned BSD way in case that fails. */
 int get_ptytty(int *xptyfd, int *xttyfd)
@@ -145,7 +165,7 @@
 	quit = 1;
 }
 
-void spawn_shell(int ptyfd, int ttyfd, const char *command)
+void spawn_shell(int ptyfd, int ttyfd, char * const *command_args)
 {
   fflush(stdout);
   child_pid = fork();
@@ -170,7 +190,7 @@
   setgid(getgid());
   setuid(getuid());
 
-  execl(command, command, NULL);
+  execvp(command_args[0], command_args);
   exit(127);
 }
 
@@ -224,11 +244,13 @@
   int ptyfd, ttyfd;
   struct bogl_font *font;
   char *locale = , *command = NULL;
+  char **command_args;
   int i;
   char o = ' ';
   int pending = 0;
 
-  for (i = 1 ; i  argc ; ++i)
+  for (i = 1 ; i  argc ; ++i) {
+  int done = 0;
   if (argv[i][0] == '-')
   switch (argv[i][1])
   {
@@ -237,6 +259,10 @@
   o = argv[i][1];
   break;
 
+  case '-':
+  done = 1;
+  break;
+
   default:
   printf (unknown option: %c\n, argv[i][1]);
   }
@@ -258,6 +284,10 @@
 break;
 }
 
+  if (done)
+  break;
+  }
+
   setlocale(LC_CTYPE, locale);
 
   if (font_name == NULL) {
@@ -291,7 +321,22 @@
 exit(1);
   }
 
-  spawn_shell(ptyfd, ttyfd, command == NULL ? /bin/sh : command);
+  if (command) {
+command_args = xmalloc(2 * sizeof *command_args);
+command_args[0] = command;
+command_args[1] = NULL;
+  } else if (i  argc - 1) {
+int j;
+command_args = xmalloc((argc - i) * sizeof *command_args);
+for (j = i + 1; j  argc; ++j)
+  command_args[j - (i + 1)] = argv[j];
+command_args[argc - (i + 1)] = NULL;
+  } else {
+command_args = xmalloc(2 * sizeof *command_args);
+command_args[0] = /bin/sh;
+command_args[1] = NULL;
+  }
+  spawn_shell(ptyfd, ttyfd, command_args);
 
   signal(SIGHUP, reload_font);
   signal(SIGTERM, sigterm);


klineakconfig 0.9-8 MIGRATED to testing

2009-05-15 Thread Debian testing watch
FYI: The status of the klineakconfig source package
in Debian's testing distribution has changed.

  Previous version: 0.9-7
  Current version:  0.9-8

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



kipina 0.2.2-1 MIGRATED to testing

2009-05-15 Thread Debian testing watch
FYI: The status of the kipina source package
in Debian's testing distribution has changed.

  Previous version: 0.1.1-4
  Current version:  0.2.2-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



uutraf 1.1-15 MIGRATED to testing

2009-05-15 Thread Debian testing watch
FYI: The status of the uutraf source package
in Debian's testing distribution has changed.

  Previous version: 1.1-13
  Current version:  1.1-15

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



lib3ds 1.3.0-2 MIGRATED to testing

2009-05-15 Thread Debian testing watch
FYI: The status of the lib3ds source package
in Debian's testing distribution has changed.

  Previous version: 1.3.0-1
  Current version:  1.3.0-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libcgi 1.0-7 MIGRATED to testing

2009-05-15 Thread Debian testing watch
FYI: The status of the libcgi source package
in Debian's testing distribution has changed.

  Previous version: 1.0-6
  Current version:  1.0-7

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: amavis-stats

2009-05-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 528586 + pending
Bug#528586: amavis-stats fails on RRDp dependency
There were no tags set.
Tags added: pending

 tags 528589 + pending
Bug#528589: amavis-stats: New version run as daemon and is started with 
different options
There were no tags set.
Tags added: pending

 thank you
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org