Changes between Version 3 and Version 4 of waue/2011/0804


Ignore:
Timestamp:
Aug 4, 2011, 3:17:54 PM (13 years ago)
Author:
waue
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • waue/2011/0804

    v3 v4  
    2222
    2323 * 解壓縮後,將 javamail.jar 放到 classpath 內
     24
     25 * 測試將 /home/waue/Desktop/index.html 寄到 gmail
    2426
    2527 * 程式碼
     
    6264                String record = null; // name of folder in which to record mail
    6365                boolean debug = false;
    64                
    6566                int optind;
    66                 /*
    67 
    68 
    69                 for (optind = 0; optind < argv.length; optind++) {
    70                         if (argv[optind].equals("-T")) {
    71                                 protocol = argv[++optind];
    72                         } else if (argv[optind].equals("-H")) {
    73                                 host = argv[++optind];
    74                         } else if (argv[optind].equals("-U")) {
    75                                 user = argv[++optind];
    76                         } else if (argv[optind].equals("-P")) {
    77                                 password = argv[++optind];
    78                         } else if (argv[optind].equals("-M")) {
    79                                 mailhost = argv[++optind];
    80                         } else if (argv[optind].equals("-f")) {
    81                                 record = argv[++optind];
    82                         } else if (argv[optind].equals("-s")) {
    83                                 subject = argv[++optind];
    84                         } else if (argv[optind].equals("-o")) { // originator
    85                                 from = argv[++optind];
    86                         } else if (argv[optind].equals("-c")) {
    87                                 cc = argv[++optind];
    88                         } else if (argv[optind].equals("-b")) {
    89                                 bcc = argv[++optind];
    90                         } else if (argv[optind].equals("-L")) {
    91                                 url = argv[++optind];
    92                         } else if (argv[optind].equals("-d")) {
    93                                 debug = true;
    94                         } else if (argv[optind].equals("--")) {
    95                                 optind++;
    96                                 break;
    97                         } else if (argv[optind].startsWith("-")) {
    98                                 System.out
    99                                                 .println("Usage: sendhtml [[-L store-url] | [-T prot] [-H host] [-U user] [-P passwd]]");
    100                                 System.out
    101                                                 .println("\t[-s subject] [-o from-address] [-c cc-addresses] [-b bcc-addresses]");
    102                                 System.out
    103                                                 .println("\t[-f record-mailbox] [-M transport-host] [-d] [address]");
    104                                 System.exit(1);
    105                         } else {
    106                                 break;
    107                         }
    108                 }
    109                 */
    11067               
    11168                to = "waue0920@gmail.com";