Fossil

Check-in [adc23c10]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix a mimetype typo that prevents email notification from running.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: adc23c107d30df86b3887d65a12bf058c01fe1f04bc0b9ff89df1dd1324603cd
User & Date: drh 2018-07-17 15:10:38.622
Context
2018-07-17
15:32
Webmail changes compile on linux, mac, and windows now, so merge them to trunk. They are not ready for use, but they should not interfere with the stable parts of the code, and it is easier to test from trunk. ... (check-in: 0f6a5ee1 user: drh tags: trunk)
15:10
Fix a mimetype typo that prevents email notification from running. ... (check-in: adc23c10 user: drh tags: trunk)
15:10
Fix a mimetype typo that prevents email notification from running. ... (Closed-Leaf check-in: e2fd46dd user: drh tags: webmail)
2018-07-16
13:33
Initialize variable to quell compiler warning about potentially unitialized variable. ... (check-in: 0cb83dec user: andybradford tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/cgi.c.
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
  }
  fflush(g.httpOut);
  CGIDEBUG(("DONE\n"));

  /* After the webpage has been sent, do any useful background
  ** processing.
  */
  if( iReplyStatus==200 && fossil_strcmp(zContentType,"test/html")==0 ){
    email_auto_exec();
  }
}

/*
** Do a redirect request to the URL given in the argument.
**







|







341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
  }
  fflush(g.httpOut);
  CGIDEBUG(("DONE\n"));

  /* After the webpage has been sent, do any useful background
  ** processing.
  */
  if( iReplyStatus==200 && fossil_strcmp(zContentType,"text/html")==0 ){
    email_auto_exec();
  }
}

/*
** Do a redirect request to the URL given in the argument.
**