search for: gdate

Displaying 5 results from an estimated 5 matches for "gdate".

Did you mean: date
2006 Feb 08
1
Possible AGI Bug in Asterisk?
...file name based on the time and extension dialed $ti = time(); $dir = "/vol/recordings/"; $finame = $ti."_".$extn; $fname = $dir.$finame; $finame = $finame.".gsm"; # populate the DB with the required information # Agent, Filename, date, time # Get the Date and Time $gdate = $dbh->selectrow_array ("SELECT current_date()"); $gtime = $dbh->selectrow_array ("SELECT current_time()"); $date_time = "$gdate $gtime"; # Cross reference the Agent Phone with extension $phone = $dbh1->selectrow_array ("SELECT phone from map where extn...
2006 Jun 12
1
Ruuid had non-zero exit status (PR#8965)
..." /usr/local/include/glib-2.0/glib/gdataset.h:34: error: syntax error before "typedef" In file included from /usr/local/include/glib-2.0/glib.h:39, from uuidP.h:33, from Ruuid.h:5, from Rinit.c:1: /usr/local/include/glib-2.0/glib/gdate.h:32: error: parse error before "G_BEGIN_DECLS" /usr/local/include/glib-2.0/glib/gdate.h:43: error: syntax error before "typedef" /usr/local/include/glib-2.0/glib/gdate.h:130: error: parse error before "G_GNUC_CONST" /usr/local/include/glib-2.0/glib/gdate.h:130: war...
2013 Nov 17
2
UID order vs date order
Hi i have recently moved a mailbox to dovecot and intend to use it via imap and i have run into a problem. when i imported the mails apparently the UID order got reversed compared to the date order, result is that some clients like on android devices download the oldest mails instead of newest. it is not so interesting to have several years old mail show up at the top of the mailbox. is
2019 Feb 13
2
Archive maildir
Il giorno mer 13 feb 2019 alle ore 14:02 @lbutlr via dovecot <dovecot at dovecot.org> ha scritto: > Why would the script be looking at the contents of the messages at all? <uch css having to "deal" with the subject? If you are using maildir, you have the timestamp in the filename, and you can easily sort a message into yyyy.mm folders from there. You can also, considering the
2013 Aug 16
2
Maildirmake equiv?
...duplicate maildirmake in dovecot? for example: #!/bin/bash # v1.2a Testing for new dovecot install # Archive mail from folders without [0-9]{4} Maildirs # after they are 21 days old to a yearly folder MDIR="$HOME/Maildir" MDM="/usr/local/bin/maildirmake" YEAR=`/usr/local/bin/gdate -d "last month" '+%Y'` echo "The Year is $YEAR..." OIFS=$IFS IFS=" " for I in `find $MDIR -maxdepth 1 -mindepth 1 -type d| egrep -v "[0-9][0-9][0-9][0-9]"`; do MYDIR="${I}" TBASE=`basename $MYDIR` # if [ ! $TBASE == "Maildir&quo...