[yast-commit] r41055 - /trunk/mail/src/Mail.ycp
![](https://seccdn.libravatar.org/avatar/cc631e8deef8d2d1c347fab542a8ba48.jpg?s=120&d=mm&r=g)
Author: varkoly Date: Mon Sep 24 16:33:10 2007 New Revision: 41055 URL: http://svn.opensuse.org/viewcvs/yast?rev=41055&view=rev Log: fix #327550 - yast2-mail fetchmail error Modified: trunk/mail/src/Mail.ycp Modified: trunk/mail/src/Mail.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/mail/src/Mail.ycp?rev=41055&r1=41... ============================================================================== --- trunk/mail/src/Mail.ycp (original) +++ trunk/mail/src/Mail.ycp Mon Sep 24 16:33:10 2007 @@ -1112,7 +1112,11 @@ // Write them unconditionally, because it is now possible to // enter them also in the Permanent mode. Bug #17417. // Translators: progress label - stages = add (stages, [ _("Writing downloading settings"), WriteDownloading ]); + if (size (fetchmail) > 0 || Package::Installed ("fetchmail")) + { + stages = add (stages, [ _("Writing downloading settings"), WriteDownloading ]); + } + // Translators: progress label stages = add (stages, [ _("Writing authentication settings..."), WriteSmtpAuth ]); } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
varkoly@svn.opensuse.org