Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Sendmail (0.26 sec)

  1. istioctl/cmd/sysexits.go

    // limitations under the License.
    
    package cmd
    
    import (
    	"strings"
    
    	"istio.io/istio/istioctl/pkg/analyze"
    	"istio.io/istio/istioctl/pkg/util"
    )
    
    // Values should try to use sendmail-style values as in <sysexits.h>
    // See e.g. https://man.openbsd.org/sysexits.3
    // or `less /usr/includes/sysexits.h` if you're on Linux
    //
    // Picking the right range is tricky--there are a lot of reserved ones (see
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                setup.setup(form -> {
                    updateForm(fessConfig, form);
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse sendmail(final MailForm form) {
            validate(form, messages -> {}, () -> asHtml(path_AdminGeneral_AdminGeneralJsp));
    
            final String[] toAddresses = form.notificationTo.split(",");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
    
                // notification
                try {
                    crawler.sendMail(infoMap);
                } catch (final Exception e) {
                    logger.warn("Failed to send a mail.", e);
                }
    
            }
        }
    
        protected void sendMail(final Map<String, String> infoMap) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  4. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                    <button type="submit" class="btn btn-default ${f:h(editableClass)}"
                                                            name="sendmail" value="test">
                                                        <la:message key="labels.send_testmail"/>
                                                    </button>
                                                </div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg net/smtp, func Dial(string) (*Client, error)
    pkg net/smtp, func NewClient(net.Conn, string) (*Client, error)
    pkg net/smtp, func PlainAuth(string, string, string, string) Auth
    pkg net/smtp, func SendMail(string, Auth, string, []string, []uint8) error
    pkg net/smtp, method (*Client) Auth(Auth) error
    pkg net/smtp, method (*Client) Data() (io.WriteCloser, error)
    pkg net/smtp, method (*Client) Extension(string) (bool, string)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top