[Commits] README 1.30.2.32 1.30.2.33 fix_date.sh 1.1.2.6 1.1.2.7
claws at claws-mail.org
claws at claws-mail.org
Wed Nov 14 16:32:33 CET 2012
Update of /home/claws-mail/claws/tools
In directory srv:/tmp/cvs-serv4306/tools
Modified Files:
Tag: gtk2
README fix_date.sh
Log Message:
2012-11-14 [paul] 3.8.1cvs122
* tools/README
* tools/fix_date.sh
improvements by wwp
Index: fix_date.sh
===================================================================
RCS file: /home/claws-mail/claws/tools/Attic/fix_date.sh,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -u -d -r1.1.2.6 -r1.1.2.7
--- fix_date.sh 12 Jan 2009 11:17:56 -0000 1.1.2.6
+++ fix_date.sh 14 Nov 2012 15:32:31 -0000 1.1.2.7
@@ -21,12 +21,14 @@
# usage: fix_date.sh <filename> [<filename>..]
# It will replace the Date: value w/ the one picked up from more recent
-# Received: field if this field resides in one line. Otherwise, it will
-# take the file modification time (using a RFC 2822-compliant form).
-# If no X-Original-Date already exist, the former Date value will be set
-# in such field.
+# Fetchinfo time header, Received: field.. Otherwise, it will take the file
+# modification time (using a RFC 2822-compliant form).
+# Any already existing X-Original-Date is kept, if missing we're adding it
+# if the Date: was set (even if set w/ non conform value)
-VERSION="0.0.5"
+# TODO: fallback to X-OriginalArrivalTime: ?
+
+VERSION="0.1.2"
version()
@@ -60,6 +62,13 @@
DATE_VALID=$?
}
+dump_date_fields()
+{
+ test -z "$X_ORIGINAL_DATE" -a -n "$DATE" && \
+ echo "X-Original-Date:$DATE" >> "$TMP"
+ echo "Date:$REPLACEMENT_DATE" >> "$TMP"
+}
+
# use --force to always (re-)write the Date header
# otherwise, the Date header will be written if only it doesn't exist
FORCE=0
@@ -101,9 +110,11 @@
usage 1
TMP="/tmp/${0##*/}.tmp"
+HEADERS="/tmp/${0##*/}.headers.tmp"
+BODY="/tmp/${0##*/}.body.tmp"
-DATE_REGEXP="( (Mon|Tue|Wed|Thu|Fri|Sat|Sun),)? [0-9]+ (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dev) [0-9]+ [0-9]+:[0-9]+:[0-9}+ [-+][0-9]+"
-DATE_REGEXP_STRICT="(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-9]+ (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dev) [0-9]+ [0-9]+:[0-9]+:[0-9}+ [-+][0-9]+"
+DATE_REGEXP='( (Mon|Tue|Wed|Thu|Fri|Sat|Sun),)? [0-9]+ (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) [0-9]+ [0-9]+:[0-9]+:[0-9]+ [-+]?[0-9]+'
+DATE_REGEXP_STRICT='(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-9]+ (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) [0-9]+ [0-9]+:[0-9]+:[0-9]+ [-+]?[0-9]+'
while [ -n "$1" ]
do
@@ -113,41 +124,71 @@
shift
continue
fi
+ SKIP=0
- X_ORIGINAL_DATE=$(grep -Eim 1 '^X-Original-Date: ' "$1" | cut -d ':' -f 2-)
- DATE=$(grep -Eim 1 '^Date: ' "$1" | cut -d ':' -f 2-)
- test $STRICT -eq 1 && \
- RECEIVED_DATE=$(grep -Eim 1 ";$DATE_REGEXP" "$1" | cut -d ';' -f 2) || \
- RECEIVED_DATE=$(grep -Eim 1 "; $DATE_REGEXP_STRICT" "$1" | cut -d ';' -f 2)
- FILE_DATE=$(ls -l --time-style="+%a, %d %b %Y %X %z" "$1" | tr -s ' ' ' ' | cut -d ' ' -f 6-11)
- # we could also use the system date as a possible replacement
- #SYSTEM_DATE="$(date -R)"
-
- # determine which replacement date to use
- if [ -z "$RECEIVED_DATE" ]
+ # split headers and body
+ # get the empty line (separation between headers and body)
+ SEP=`grep -nEm1 "^$" "$1" 2>/dev/null | cut -d ':' -f 1`
+ if [ -z "$SEP" -o "$SEP" = "0" ]
then
- # don't forget the leading whitespace here
- REPLACEMENT_DATE=" $FILE_DATE"
- REPLACEMENT="file date"
-# REPLACEMENT_DATE=" $SYSTEM_DATE"
-# REPLACEMENT="system date"
+ cp -f "$1" "$HEADERS"
+ :> "$BODY"
else
- REPLACEMENT_DATE="$RECEIVED_DATE"
- REPLACEMENT="received date"
+ sed -n '1,'`expr $SEP - 1`'p' "$1" > "$HEADERS"
+ sed '1,'`expr $SEP - 1`'d' "$1" > "$BODY"
fi
- # ensure that a X-Original-Date is set (but don't override it)
- if [ -z "$X_ORIGINAL_DATE" ]
+ # work on headers only
+
+ # get the Date and X-Original-Date
+ X_ORIGINAL_DATE=`sed -n '/^X-Original-Date:/,/^[^\t]/p' "$HEADERS" | head -n -1 | cut -d ':' -f 2-`
+ DATE=`sed -n '/^Date:/,/^[^\t]/p' "$HEADERS" | head -n -1 | cut -d ':' -f 2-`
+
+ # work on headers, minus Date and X-Original-Date
+ test -n "$X_ORIGINAL_DATE" && \
+ sed -i '/^X-Original-Date:/,/^[^\t]/d' "$HEADERS"
+ test -n "$DATE" && \
+ sed -i '/^Date:/,/^[^\t]/d' "$HEADERS"
+
+ # found a replacement date in Fetchinfo headers
+ FETCH_DATE=`grep -im1 'X-FETCH-TIME: ' "$HEADERS" | cut -d ' ' -f 2-`
+
+ # or in Received: headers ..
+ test $STRICT -eq 1 && \
+ REGEXP="$DATE_REGEXP" || \
+ REGEXP="$DATE_REGEXP_STRICT"
+ RECEIVED_DATE=`sed -n '/^Received:/,/^[^\t]/p' "$HEADERS" | head -n -1 | grep -Eoim 1 "$REGEXP"`
+
+ # .. or from FS
+ FILE_DATE=`LC_ALL=POSIX LANG=POSIX ls -l --time-style="+%a, %d %b %Y %X %z" "$1" | tr -s ' ' | cut -d ' ' -f 6-11`
+ # we could also use the system date as a possible replacement
+ SYSTEM_DATE="`date -R`"
+
+ # determine which replacement date to use
+ if [ -z "$FETCH_DATE" ]
then
- if [ -z "$DATE" ]
+ if [ -z "$RECEIVED_DATE" ]
then
- echo "X-Original-Date:$REPLACEMENT_DATE" > "$TMP"
+ # don't forget the leading whitespace here
+ REPLACEMENT_DATE=" $FILE_DATE"
+ REPLACEMENT="file date"
+# REPLACEMENT_DATE=" $SYSTEM_DATE"
+# REPLACEMENT="system date"
else
- test $FORCE -eq 1 && \
- echo "X-Original-Date:$DATE" > "$TMP"
+ REPLACEMENT_DATE="$RECEIVED_DATE"
+ REPLACEMENT="received date"
fi
else
- :> "$TMP"
+ # don't forget the leading whitespace here
+ REPLACEMENT_DATE=" $FETCH_DATE"
+ REPLACEMENT="Fetchinfo time header"
+ fi
+
+ # ensure that the original X-Original-Date is kept
+ :> "$TMP"
+ if [ -n "$X_ORIGINAL_DATE" ]
+ then
+ echo "X-Original-Date:$X_ORIGINAL_DATE" >> "$TMP"
fi
# replace/set the date and write all lines
@@ -157,14 +198,13 @@
then
test $DEBUG -eq 1 && \
echo "$1: date not found, using $REPLACEMENT now"
- echo "Date:$REPLACEMENT_DATE" >> "$TMP"
- cat "$1" >> "$TMP"
+ dump_date_fields
else
if [ $FORCE -eq 1 ]
then
test $DEBUG -eq 1 && \
echo "$1: date already found, replacing with $REPLACEMENT"
- sed "s/^Date: .*/Date:$REPLACEMENT_DATE/" "$1" >> "$TMP"
+ dump_date_fields
else
if [ $RFC -eq 1 ]
then
@@ -172,29 +212,35 @@
then
test $DEBUG -eq 1 && \
echo "$1: date already found but not RFC-compliant, replacing with $REPLACEMENT"
- sed "s/^Date: .*/Date:$REPLACEMENT_DATE/" "$1" >> "$TMP"
+ dump_date_fields
else
test $DEBUG -eq 1 && \
echo "$1: date already found and RFC-compliant, skipping"
- cat "$1" >> "$TMP"
+ SKIP=1
fi
else
test $DEBUG -eq 1 && \
echo "$1: date already found, skipping"
- cat "$1" >> "$TMP"
+ SKIP=1
fi
fi
fi
- # uncomment the following line to backup the original file
- #mv -f "$1" "$1.bak"
-
- mv -f "$TMP" "$1"
- if [ $? -ne 0 ]
+ if [ $SKIP -eq 0 ]
then
- echo "error while moving '$TMP' to '$1'"
- exit 1
+ # uncomment the following line to backup the original file
+ #mv -f "$1" "$1.bak"
+
+ cat "$HEADERS" >> "$TMP"
+ cat "$BODY" >> "$TMP"
+ mv -f "$TMP" "$1"
+ if [ $? -ne 0 ]
+ then
+ echo "error while moving '$TMP' to '$1'"
+ exit 1
+ fi
fi
+ rm -f "$HEADERS" "$BODY" "$TMP" >/dev/null 2>&1
shift
done
Index: README
===================================================================
RCS file: /home/claws-mail/claws/tools/README,v
retrieving revision 1.30.2.32
retrieving revision 1.30.2.33
diff -u -d -r1.30.2.32 -r1.30.2.33
--- README 12 Sep 2008 08:01:34 -0000 1.30.2.32
+++ README 14 Nov 2012 15:32:31 -0000 1.30.2.33
@@ -588,14 +588,23 @@
* fix-date.sh
WHAT IT DOES
- It will replace the Date: value w/ the one picked up from
- more recent Received: field if this field resides in one
- line. Otherwise, it will take the file modification time
- (using a RFC 2822-compliant form). If no X-Original-Date already
- exist, the former Date value will be set in such field.
-
+ Add a 'Date:' header to the selected email(s) when such header is
+ missing. The correct date is guessed from other headers that contain
+ timestamp information (preferred: Fetchinfo header if found) or from
+ the file or system date as a fallback. The order or preference for the
+ date valuereplacement can be changed by editing the script.
+ This script can be used to fix messages that show non RFC-compliant
+ Date headers as well.
+ X-Original-Date is always added too if not already existing (if so,
+ it's left untouched), to keep track of the original value if any.
+ An existing Date: header is not overwritten unless you use the --force
+ switch.
+ Non RFC-compliant dates can be overwritten using the --rfc switch. Use
+ --strict to use strict RFC matching patterns for date values in other
+ headers.
+
HOW TO USE IT
- fix_date.sh <filename> [<filename>..]
+ fix_date.sh %F
Contact: wwp <wwp at claws-mail.org>
More information about the Commits
mailing list