/[CCFs]/bin/ccfnotify
ViewVC logotype

Contents of /bin/ccfnotify

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.14 - (show annotations)
Tue Nov 23 10:07:42 2021 UTC (3 years ago) by ccflib
Branch: MAIN
CVS Tags: HEAD
Changes since 1.13: +2 -2 lines
Correct typo in email from address

1 #! /xdata/ccflib/perl5/perlbrew/perls/perl-5.18.4/bin/perl
2 #
3 # After several changes in mail gtwy at ESAC, the different mail addresses
4 # have been changed.
5 #
6 # Mailman mail distribution lists have now the form:
7 #
8 # list@sciops.esa.int
9 #
10 # e.g. sas-devel@sciops.esa.int, ccf@sciops.esa.int
11 #
12 # $replyto : eduardo.ojero@sciops.esa.int
13 #
14 # $Id: ccfnotify,v 1.13 2021/07/27 15:10:24 ccflib Exp $
15 #
16 require 5;
17 use FileHandle;
18 use Getopt::Std;
19 use strict;
20 use warnings;
21
22 my %opts;
23 getopts('t:d', \%opts); # -t development|release|public
24 # -d => @names (see next line) were deleted
25 my @names = @ARGV; # the rest of the command line contains the names of the
26 # CCF constituents
27
28 die("Usage: -t development|release|public\n") if(not exists $opts{'t'});
29
30 my $update = $opts{'t'};
31 my @to;
32 my $replyto;
33 my $subject;
34 my $delete = $opts{'d'};
35
36 foreach($update){
37
38 /^development$/ && do {
39 @to = qw/sas-devel\@sciops.esa.int/;
40 $subject = "Update of the $update CCF area";
41 $replyto = 'eduardo.ojero@esa.int';
42 next;
43 };
44
45 /^release$/ && do {
46 @to = qw/ccf\@sciops.esa.int sas-devel\@sciops.esa.int/;
47 $subject = "Update of the $update CCF area";
48 $replyto = 'eduardo.ojero@esa.int';
49 next;
50 };
51
52 /^public$/ && do {
53 @to = qw/ccf\@sciops.esa.int sas-devel\@sciops.esa.int/;
54 $subject = "XMM-Newton calibration update";
55 $replyto = 'eduardo.ojero@esa.int';
56 next;
57 };
58
59 die("Wrong -t option: $update\n");
60 }
61
62 exit(0) if(not @names);
63
64 #
65 # notice that sendmail is in /usr/lib not in /usr/bin or /usr/sbin
66
67 foreach(@to){
68 my $fh = new FileHandle "|/usr/lib/sendmail -t" or die ("$!\n");
69
70 $fh->print("From: ccflib\@sciops.esa.int
71 Reply-To: $replyto
72 To: $_
73 Subject: $subject
74 ");
75
76 if($delete){
77 $fh->print("\nThe following calibration constituents were deleted or moved to another directory:\n\n");
78 } else {
79 $fh->print("\nThe following new calibration constituents are available:\n\n");
80 }
81
82 foreach(@names){
83 $fh->print("$_\n");
84 }
85
86 if($update eq "public"){
87 $fh->print('
88 For details and download instructions please refer to:
89
90 https://www.cosmos.esa.int/web/xmm-newton/calibration
91 https://www.cosmos.esa.int/web/xmm-newton/ccf-release-notes
92
93 Best regards,
94
95 The XMM-Newton Calibration Librarian
96 ---------------------------------------------------------------
97 Please reply to: ');
98 $fh->print(" $replyto\n");
99
100 undef $fh;
101
102 }
103
104 }

  ViewVC Help
Powered by ViewVC 1.1.27