wmail: more version and copyright updates.
This commit is contained in:
parent
85d207d4af
commit
24ce08f47c
6 changed files with 17 additions and 17 deletions
|
@ -2,8 +2,9 @@
|
||||||
// common.c
|
// common.c
|
||||||
// common defines and typedefs, part of wmail
|
// common defines and typedefs, part of wmail
|
||||||
//
|
//
|
||||||
// Copyright 2000~2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
// Copyright 2000-2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
||||||
// All rights reserved.
|
// Copyright 2016-2017, Doug Torrance <dtorrance@piedmont.edu>.
|
||||||
|
// Copyright 2019, Jeremy Sowden <jeremy@azazel.net>.
|
||||||
//
|
//
|
||||||
// Redistribution and use in source and binary forms, with or without
|
// Redistribution and use in source and binary forms, with or without
|
||||||
// modification, are permitted provided that the following conditions
|
// modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
// common.h
|
// common.h
|
||||||
// common defines and typedefs, part of wmail
|
// common defines and typedefs, part of wmail
|
||||||
//
|
//
|
||||||
// Copyright 2000~2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
// Copyright 2000-2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
||||||
// All rights reserved.
|
// Copyright 2016-2017, Doug Torrance <dtorrance@piedmont.edu>.
|
||||||
|
// Copyright 2019, Jeremy Sowden <jeremy@azazel.net>.
|
||||||
//
|
//
|
||||||
// Redistribution and use in source and binary forms, with or without
|
// Redistribution and use in source and binary forms, with or without
|
||||||
// modification, are permitted provided that the following conditions
|
// modification, are permitted provided that the following conditions
|
||||||
|
@ -53,9 +54,6 @@
|
||||||
// filename of the config-file
|
// filename of the config-file
|
||||||
#define WMAIL_RC_FILE ".wmailrc"
|
#define WMAIL_RC_FILE ".wmailrc"
|
||||||
|
|
||||||
#define WMAIL_NAME "wmail"
|
|
||||||
#define WMAIL_VERSION "wmail v2.0 (C) 2000~2002 Sven Geisenhainer <sveng@informatik.uni-jena.de>"
|
|
||||||
|
|
||||||
#define WMAIL_READSTATUS "O"
|
#define WMAIL_READSTATUS "O"
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
// config.c
|
// config.c
|
||||||
// configuration file parser, part of wmail
|
// configuration file parser, part of wmail
|
||||||
//
|
//
|
||||||
// Copyright 2000~2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
// Copyright 2000-2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
||||||
// All rights reserved.
|
// Copyright 2016-2017, Doug Torrance <dtorrance@piedmont.edu>.
|
||||||
|
// Copyright 2019, Jeremy Sowden <jeremy@azazel.net>.
|
||||||
//
|
//
|
||||||
// Redistribution and use in source and binary forms, with or without
|
// Redistribution and use in source and binary forms, with or without
|
||||||
// modification, are permitted provided that the following conditions
|
// modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
// config.h
|
// config.h
|
||||||
// configuration file parser, part of wmail
|
// configuration file parser, part of wmail
|
||||||
//
|
//
|
||||||
// Copyright 2000~2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
// Copyright 2000-2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
||||||
// All rights reserved.
|
// Copyright 2016-2017, Doug Torrance <dtorrance@piedmont.edu>.
|
||||||
|
// Copyright 2019, Jeremy Sowden <jeremy@azazel.net>.
|
||||||
//
|
//
|
||||||
// Redistribution and use in source and binary forms, with or without
|
// Redistribution and use in source and binary forms, with or without
|
||||||
// modification, are permitted provided that the following conditions
|
// modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -3,10 +3,9 @@
|
||||||
// email indicator tool designed as docklet for Window Maker
|
// email indicator tool designed as docklet for Window Maker
|
||||||
// main c source-file
|
// main c source-file
|
||||||
//
|
//
|
||||||
// wmail version 2.0
|
// Copyright 2000-2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
||||||
//
|
// Copyright 2016-2017, Doug Torrance <dtorrance@piedmont.edu>.
|
||||||
// Copyright 2000~2002, Sven Geisenhainer <sveng@informatik.uni-jena.de>.
|
// Copyright 2019, Jeremy Sowden <jeremy@azazel.net>.
|
||||||
// All rights reserved.
|
|
||||||
//
|
//
|
||||||
// Redistribution and use in source and binary forms, with or without
|
// Redistribution and use in source and binary forms, with or without
|
||||||
// modification, are permitted provided that the following conditions
|
// modification, are permitted provided that the following conditions
|
||||||
|
@ -248,7 +247,7 @@ int main( int argc, char **argv )
|
||||||
// parse cmdline-args and override defaults and cfg-file settings
|
// parse cmdline-args and override defaults and cfg-file settings
|
||||||
DAParseArguments( argc, argv, options,
|
DAParseArguments( argc, argv, options,
|
||||||
sizeof(options) / sizeof(DAProgramOption),
|
sizeof(options) / sizeof(DAProgramOption),
|
||||||
WMAIL_NAME, WMAIL_VERSION );
|
PACKAGE_NAME, PACKAGE_STRING );
|
||||||
|
|
||||||
if( options[0].used )
|
if( options[0].used )
|
||||||
config.givenOptions |= CL_DISPLAY;
|
config.givenOptions |= CL_DISPLAY;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#-*-shell-script-*-############################################################
|
#-*-shell-script-*-############################################################
|
||||||
#
|
#
|
||||||
# .wmailrc - wmail v2.0 configuration file
|
# .wmailrc - wmail v2.1 configuration file
|
||||||
# note: cmd-line options always overide the settings in this file unless you
|
# note: cmd-line options always overide the settings in this file unless you
|
||||||
# force runtime reconfiguration by clicking on the docklets display area
|
# force runtime reconfiguration by clicking on the docklets display area
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue