From: Stig T. <jw...@us...> - 2005-03-20 20:36:59
|
Update of /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/mail/options In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6791/net/sf/mailsomething/gui/mail/options Modified Files: AdvancedInformationPanel.java ServerInformationPanel.java Log Message: Index: AdvancedInformationPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/mail/options/AdvancedInformationPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AdvancedInformationPanel.java 3 Apr 2004 07:56:53 -0000 1.1 --- AdvancedInformationPanel.java 20 Mar 2005 20:36:48 -0000 1.2 *************** *** 203,207 **** //JCheckBox usesslCheckbox; ! System.out.println("calling advanced apply"); try { --- 203,207 ---- //JCheckBox usesslCheckbox; ! //System.out.println("calling advanced apply"); try { Index: ServerInformationPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/mail/options/ServerInformationPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ServerInformationPanel.java 3 Apr 2004 07:56:53 -0000 1.1 --- ServerInformationPanel.java 20 Mar 2005 20:36:48 -0000 1.2 *************** *** 197,201 **** usernameout = dialog.getUsername(); ! //System.out.println("dialog get username = " + dialog.getUsername()); passwordout = dialog.getPassword(); --- 197,201 ---- usernameout = dialog.getUsername(); ! ////System.out.println("dialog get username = " + dialog.getUsername()); passwordout = dialog.getPassword(); *************** *** 255,259 **** maccount.setUserName(usernamefield.getText()); ! System.out.println(new String(passwordfield.getPassword())); if (rememberPassword.isSelected()) { --- 255,259 ---- maccount.setUserName(usernamefield.getText()); ! //System.out.println(new String(passwordfield.getPassword())); if (rememberPassword.isSelected()) { *************** *** 282,290 **** ! System.out.println("setting smtp server settings"); if (maccount.getSmtpAccount() == null) { ! System.out.println("set new smtp"); SmtpAccount smtp = --- 282,290 ---- ! //System.out.println("setting smtp server settings"); if (maccount.getSmtpAccount() == null) { ! //System.out.println("set new smtp"); SmtpAccount smtp = *************** *** 305,309 **** } else { ! System.out.println("changing old smtp account"); SmtpAccount smtp = maccount.getSmtpAccount(); --- 305,309 ---- } else { ! //System.out.println("changing old smtp account"); SmtpAccount smtp = maccount.getSmtpAccount(); *************** *** 321,325 **** if (usernameout != null) { ! System.out.println("set username smtp " + usernameout); smtp.setUserName(usernameout); --- 321,325 ---- if (usernameout != null) { ! //System.out.println("set username smtp " + usernameout); smtp.setUserName(usernameout); *************** *** 327,336 **** } else { ! System.out.println("usernameout == null"); } if (passwordout != null) { ! System.out.println("set password smtp " + usernameout); smtp.setPassword(passwordout); --- 327,336 ---- } else { ! //System.out.println("usernameout == null"); } if (passwordout != null) { ! //System.out.println("set password smtp " + usernameout); smtp.setPassword(passwordout); |