http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5383





------- Additional Comments From [EMAIL PROTECTED]  2007-03-20 09:26 -------
> you left it a bit late ;)

I know, sorry.

> let's give it a try and see if it doesn't introduce any issues.

Here is a little illustration code that can help detect missing modules:

  my(%modules_basic) = %INC;  # remember current state (e.g. after compile_now)
  require URI;   # let the program do its normal flow, possibly
                 # secretly loading additional modules
  # detect and show additionally loaded modules:
  my(@modules_extra) = grep {!exists $modules_basic{$_}} keys %INC;
  printf("missing modules: %s\n", join(", ",@modules_extra))




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to