전체 글
-
메일 서비스카테고리 없음 2016. 8. 18. 18:41
https://drive.google.com/file/d/0ByUcPT6jVZssYmYyYzE4YTctMWU4ZC00NTA4LWI3NjctZTk2ZjBlNzY1MDBl/view?ddrp=1&hl=en_GB&pli=1# @Override public void data(InputStream data) throws RejectException, TooMuchDataException, IOException { Session session = factory.getSession(); if (from == null || from.length() < 1) { return; } if (to.size() < 1) { return; } try { MimeMessage message = new MimeMessage(sessi..
-
Sendmail 서버를 이용해 메일 서버 구축하기1리눅스 2016. 8. 3. 20:58
1.Sendmail 서버 설치 yum install sendmail sendmail-cf sendmail-devel 2.수신메일서버 설정 (1) 메일 호스트 지정하기(Cw) . SendMail 을 설정하는 데 있어서 가장 중요한 부분으로 메일 서버의 호스트명을 지정해주는 기능 . Cworiginalchoi.net 과 같이 설정해주면 됨 Cwmycheckup.co.kr(2) 메일 호스트 지정하기(Fw) . 기본설정은 Fw/etc/mail/local-host-names 으로 /etc/mail/local-host-names 파일을 불러들임 . /etc/mail/local-host-names 에는 각 라인마다 도메인을 입력해주면 됨(3) 메일 릴레이 설정(Access list database) . 스팸메일을 차..
-
yum사용법리눅스 2016. 8. 3. 20:28
yum 사용방법 yum은 인공지능적인 툴로 인터넷을 통하여 자동적으로 설치해주는 기능으로 rpm이 수동적인 반면 보다 편리한 yum을 사용하길 권장함저장소의 URL은 /etc/yum.repos.d/ 디렉토리의 파일에 저장됨 # 설치하기 yum install 패키지 이름 # y 옵션은 설치시 묻지 않고 설치 진행함. yum -y install 패키지 이름 # 업데이트 가능 목록 확인 yum check-update # 패키지 업데이트 yum update 패키지 이름 # 패키지 삭제 yum remove 패키지 이름 # 패키지 정보확인 yum info 패키지 이름 # 로컬 파일로 설치 yum localinstall 패키지 이름
-
-
Customer FilterAngular JS 2016. 8. 1. 19:49
1.기본구조 app.filter('myFilter', function() { // In the return function, we must pass in a single parameter which will be the data we will work on. // We have the ability to support multiple other parameters that can be passed into the filter optionally return function(input, optional1, optional2) { //옵션값은 {{원본데이더터 | myfilter:option1,option2}} 이렇게 사용 var output; // Do filter work here return output..