--- mutt-1.5.12.orig/Makefile.am Wed Jul 5 03:43:47 2006 +++ mutt-1.5.12/Makefile.am Tue Oct 17 22:55:42 2006 @@ -135,7 +135,7 @@ ln -sf $(DESTDIR)$(bindir)/mutt_dotlock $(DESTDIR)$(bindir)/mutt.dotlock ; \ fi if test -f $(DESTDIR)$(bindir)/mutt_dotlock && test x@DOTLOCK_GROUP@ != x ; then \ - chgrp @DOTLOCK_GROUP@ $(DESTDIR)$(bindir)/mutt_dotlock && \ + true @DOTLOCK_GROUP@ $(DESTDIR)$(bindir)/mutt_dotlock && \ chmod @DOTLOCK_PERMISSION@ $(DESTDIR)$(bindir)/mutt_dotlock || \ { echo "Can't fix mutt_dotlock's permissions!" >&2 ; exit 1 ; } \ fi --- mutt-1.5.12.orig/mutt_ssl.c Fri Apr 28 03:31:04 2006 +++ mutt-1.5.12/mutt_ssl.c Tue Oct 17 22:53:40 2006 @@ -198,7 +198,8 @@ mutt_message (_("Filling entropy pool: %s...\n"), file); - + +#if 0 /* disable for WestHost */ /* check that the file permissions are secure */ if (st.st_uid != getuid () || ((st.st_mode & (S_IWGRP | S_IRGRP)) != 0) || @@ -208,6 +209,7 @@ mutt_sleep (2); return -1; } +#endif #ifdef HAVE_RAND_EGD n = RAND_egd (file);