~ubuntu-branches/debian/lenny/alpine/lenny

« back to all changes in this revision

Viewing changes to contrib/utils/brk2pine.sh

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
#            T H E    P I N E    M A I L   S Y S T E M
 
4
#
 
5
#   Laurence Lundblade and Mike Seibel
 
6
#   Networks and Distributed Computing
 
7
#   Computing and Communications
 
8
#   University of Washington
 
9
#   Administration Building, AG-44
 
10
#   Seattle, Washington, 98195, USA
 
11
#   Internet: lgl@CAC.Washington.EDU
 
12
#             mikes@CAC.Washington.EDU
 
13
#
 
14
#   Please address all bugs and comments to "pine-bugs@cac.washington.edu"
 
15
#      
 
16
#   Copyright 1989, 1990, 1991, 1992  University of Washington
 
17
#
 
18
#    Permission to use, copy, modify, and distribute this software and its
 
19
#   documentation for any purpose and without fee to the University of
 
20
#   Washington is hereby granted, provided that the above copyright notice
 
21
#   appears in all copies and that both the above copyright notice and this
 
22
#   permission notice appear in supporting documentation, and that the name of
 
23
#   the University of Washington not be used in advertising or publicity
 
24
#   pertaining to distribution of the software without specific, written prior
 
25
#   permission.  This software is made available "as is", and
 
26
#   THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
 
27
#   WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
 
28
#   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
 
29
#   NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
 
30
#   INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
 
31
#   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
 
32
#   (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
 
33
#   WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
34
#  
 
35
#
 
36
#   Pine is in part based on The Elm Mail System:
 
37
#    ***********************************************************************
 
38
#    *  The Elm Mail System  -  $Revision: 2.13 $   $State: Exp $          *
 
39
#    *                                                                     *
 
40
#    *                  Copyright (c) 1986, 1987 Dave Taylor              *
 
41
#    *                  Copyright (c) 1988, 1989 USENET Community Trust   *
 
42
#    ***********************************************************************
 
43
 
44
#
 
45
 
 
46
 
 
47
 
 
48
#
 
49
# A filter to convert personal mail aliases in a .mailrc file into
 
50
# pine address book format.
 
51
#
 
52
# Usage: program [.mailrc] >> .addressbook
 
53
#
 
54
# Corey Satten, corey@cac.washington.edu, 9/25/91
 
55
#
 
56
sed -n '
 
57
# first fold continued lines (ending in \) into a single long line
 
58
    /\\[        ]*$/ {
 
59
            : more
 
60
            s/\\//g
 
61
            N
 
62
            s/\n/ /
 
63
            /\\/b more
 
64
            }
 
65
# next convert all sequences of whitespace into single space
 
66
    s/[         ][      ]*/ /g
 
67
# finally, reformat and print lines containing alias as the first word
 
68
    /^ *alias / {
 
69
            s/^ *alias \([!-~][!-~]*\) \(.*\)$/\1       \1      (\2)/
 
70
            s/ /,/g
 
71
            s/(\([^,]*\))/\1/
 
72
            p
 
73
            }
 
74
' ${*-$HOME/.mailrc}